mirror of
https://github.com/golang/go
synced 2024-11-22 07:14:40 -07:00
7da86983a8
Fixes #1566. R=ken2 CC=golang-dev https://golang.org/cl/4259041
15 lines
310 B
Go
15 lines
310 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2011 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() {
|
|
var x unsafe.Pointer
|
|
println(*x) // ERROR "invalid indirect.*unsafe.Pointer"
|
|
}
|