mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
f2e94b58a0
Fixes #6406. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/46900043
18 lines
386 B
Go
18 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"
|
|
}
|