mirror of
https://github.com/golang/go
synced 2024-11-21 15:24:45 -07:00
Test case for issue 475 and related bug.
R=iant CC=golang-dev https://golang.org/cl/183087
This commit is contained in:
parent
c7e2970ba8
commit
c7bd61a216
21
test/bugs/bug239.go
Normal file
21
test/bugs/bug239.go
Normal file
@ -0,0 +1,21 @@
|
||||
// $G $D/$F.go || echo BUG: bug239
|
||||
|
||||
// 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.
|
||||
|
||||
// Test case for issue 475. This file should compile.
|
||||
|
||||
package main
|
||||
|
||||
import . "unsafe"
|
||||
|
||||
func main() {
|
||||
var x int
|
||||
println(Sizeof(x))
|
||||
}
|
||||
|
||||
/*
|
||||
bug239.go:11: imported and not used: unsafe
|
||||
bug239.go:15: undefined: Sizeof
|
||||
*/
|
20
test/bugs/bug240.go
Normal file
20
test/bugs/bug240.go
Normal file
@ -0,0 +1,20 @@
|
||||
// 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"
|
||||
|
||||
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".
|
||||
*/
|
@ -151,3 +151,11 @@ BUG: bug219
|
||||
|
||||
=========== bugs/bug238.go
|
||||
BUG: errchk: command succeeded unexpectedly
|
||||
|
||||
=========== bugs/bug239.go
|
||||
bugs/bug239.go:11: imported and not used: unsafe
|
||||
bugs/bug239.go:15: undefined: Sizeof
|
||||
BUG: bug239
|
||||
|
||||
=========== bugs/bug240.go
|
||||
BUG: errchk: command succeeded unexpectedly
|
||||
|
Loading…
Reference in New Issue
Block a user