Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug240.go
blob6cba9c8b1e52bec28a21b595311f16f94d4dd11a
1 // errchk $G -e $D/$F.go
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 package main
9 import . "unsafe" // ERROR "not used"
11 func main() {
12 var x int
13 println(unsafe.Sizeof(x)) // ERROR "undefined"
17 After a '.' import, "unsafe" shouldn't be defined as
18 an identifier. 6g complains correctly for imports other
19 than "unsafe".