commit | f2e94b58a01389cb9dcf51821b96435343594879 | [log] [tgz] |
---|---|---|
author | Daniel Morsing <daniel.morsing@gmail.com> | Fri Jan 03 21:03:20 2014 +0100 |
committer | Daniel Morsing <daniel.morsing@gmail.com> | Fri Jan 03 21:03:20 2014 +0100 |
tree | 55b705cec1442c287be600113767cc73084381b0 | |
parent | 880442f110ce33b2981561461841979d58848b78 [diff] [blame] |
cmd/gc: silence assignment errors to undefined symbols Fixes #6406. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/46900043
diff --git a/test/typecheck.go b/test/typecheck.go index a2ad91f..6f12042 100644 --- a/test/typecheck.go +++ b/test/typecheck.go
@@ -14,5 +14,5 @@ func main() { mine() // GCCGO_ERROR "not enough arguments" - c = mine() // ERROR "undefined.*c|not enough arguments" "cannot assign to c" + c = mine() // ERROR "undefined.*c|not enough arguments" }