1
0
mirror of https://github.com/golang/go synced 2024-07-08 12:18:55 +00:00
go/test/fixedbugs/issue16306.go
Keith Randall 64214792e2 cmd/compile: allow unsafe.Pointer(nil) as static data
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>
2016-08-16 17:47:50 +00:00

16 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}
}