1// compile
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
7package main
8
9import "unsafe"
10
11func 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}
23