go/test/typecheck.go
Daniel Morsing f2e94b58a0 cmd/gc: silence assignment errors to undefined symbols
Fixes #6406.

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/46900043
2014-01-03 21:03:20 +01:00

19 lines
386 B
Go

// errorcheck
// Verify that the Go compiler will not
// die after running into an undefined
// type in the argument list for a
// function.
// Does not compile.
package main
func mine(int b) int { // ERROR "undefined.*b"
return b + 2 // ERROR "undefined.*b"
}
func main() {
mine() // GCCGO_ERROR "not enough arguments"
c = mine() // ERROR "undefined.*c|not enough arguments"
}