OSDN Git Service

PR go/50656
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / go.test / test / fixedbugs / bug319.go
1 // $G $D/$F.go
2
3 // Copyright 2011 The Go Authors.  All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 package main
8
9 import "unsafe"
10
11 func main() {
12         var x int
13         
14         a := uint64(uintptr(unsafe.Pointer(&x)))
15         b := uint32(uintptr(unsafe.Pointer(&x)))
16         c := uint16(uintptr(unsafe.Pointer(&x)))
17         d := int64(uintptr(unsafe.Pointer(&x)))
18         e := int32(uintptr(unsafe.Pointer(&x)))
19         f := int16(uintptr(unsafe.Pointer(&x)))
20
21         _, _, _, _, _, _ = a, b, c, d, e, f
22 }