mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
64214792e2
Fixes #16306 Change-Id: If8e2f411fe9a5a5c198f10765fee7261ba8feaf2 Reviewed-on: https://go-review.googlesource.com/24836 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
15 lines
314 B
Go
15 lines
314 B
Go
// compile
|
|
|
|
// Copyright 2016 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"
|
|
|
|
var x = unsafe.Pointer(uintptr(0))
|
|
|
|
func main() {
|
|
_ = map[unsafe.Pointer]int{unsafe.Pointer(uintptr(0)): 0}
|
|
}
|