diff options
author | Ian Lance Taylor <iant@golang.org> | 2009-11-02 10:12:40 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2009-11-02 10:12:40 -0800 |
commit | 1d8d4ec1de402b247b8b193c0b3683c699ea34fc (patch) | |
tree | 3632bdcd05ff0f2733eb9eed9b81c5cf1b29be50 | |
parent | 3c5f4d06f0be56a50ca3cdcb72007b2566b0389e (diff) | |
download | golang-1d8d4ec1de402b247b8b193c0b3683c699ea34fc.tar.gz |
Recognize gccgo error message.
runtime.go:19:10: error: reference to undefined identifier ‘runtime.printbool’
R=rsc
http://go/go-review/1018018
-rw-r--r-- | test/runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtime.go b/test/runtime.go index 5bf76e003..9507300a2 100644 --- a/test/runtime.go +++ b/test/runtime.go @@ -16,5 +16,5 @@ package main import "runtime" func main() { - runtime.printbool(true); // ERROR "cannot refer" + runtime.printbool(true); // ERROR "cannot refer|undefined identifier" } |