mirror of
https://github.com/golang/go
synced 2024-11-12 03:10:22 -07:00
1b1f39eb86
Fixes #475. R=ken2 CC=golang-dev https://golang.org/cl/183157
21 lines
445 B
Go
21 lines
445 B
Go
// errchk $G -e $D/$F.go
|
|
|
|
// 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" // ERROR "not used"
|
|
|
|
func main() {
|
|
var x int
|
|
println(unsafe.Sizeof(x)) // ERROR "undefined"
|
|
}
|
|
|
|
/*
|
|
After a '.' import, "unsafe" shouldn't be defined as
|
|
an identifier. 6g complains correctly for imports other
|
|
than "unsafe".
|
|
*/
|