aboutsummaryrefslogtreecommitdiff
path: root/test/runtime.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2009-11-02 10:12:40 -0800
committerIan Lance Taylor <iant@golang.org>2009-11-02 10:12:40 -0800
commit102357f028c35c44a85ded1a281b11d95839f7c0 (patch)
tree3632bdcd05ff0f2733eb9eed9b81c5cf1b29be50 /test/runtime.go
parentacc54b6c707e8571101f5b018bc281a239b5a19a (diff)
downloadgo-102357f028c35c44a85ded1a281b11d95839f7c0.tar.gz
go-102357f028c35c44a85ded1a281b11d95839f7c0.zip
Recognize gccgo error message.
runtime.go:19:10: error: reference to undefined identifier ‘runtime.printbool’ R=rsc http://go/go-review/1018018
Diffstat (limited to 'test/runtime.go')
-rw-r--r--test/runtime.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtime.go b/test/runtime.go
index 5bf76e0036..9507300a27 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"
}