2012-02-18 14:15:42 -07:00
|
|
|
// run
|
2010-01-18 19:26:10 -07:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "unsafe"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// works
|
2010-02-02 00:05:15 -07:00
|
|
|
addr := uintptr(0x234)
|
|
|
|
x1 := (*int)(unsafe.Pointer(addr))
|
2010-01-18 19:26:10 -07:00
|
|
|
|
|
|
|
// fails
|
2010-02-02 00:05:15 -07:00
|
|
|
x2 := (*int)(unsafe.Pointer(uintptr(0x234)))
|
2010-03-24 17:46:53 -06:00
|
|
|
|
2010-02-02 00:05:15 -07:00
|
|
|
if x1 != x2 {
|
2010-03-24 17:46:53 -06:00
|
|
|
println("mismatch", x1, x2)
|
|
|
|
panic("fail")
|
2010-02-02 00:05:15 -07:00
|
|
|
}
|
2010-01-18 19:26:10 -07:00
|
|
|
}
|