]> Cypherpunks repositories - gostls13.git/commitdiff
Recognize gccgo error message.
authorIan Lance Taylor <iant@golang.org>
Mon, 2 Nov 2009 18:12:40 +0000 (10:12 -0800)
committerIan Lance Taylor <iant@golang.org>
Mon, 2 Nov 2009 18:12:40 +0000 (10:12 -0800)
runtime.go:19:10: error: reference to undefined identifier ‘runtime.printbool’

R=rsc
http://go/go-review/1018018

test/runtime.go

index 5bf76e0036311e8d21cdd160705c8f606d8a465f..9507300a2717453e2fb8bc47ec047194ad81baae 100644 (file)
@@ -16,5 +16,5 @@ package main
 import "runtime"
 
 func main() {
-       runtime.printbool(true);        // ERROR "cannot refer"
+       runtime.printbool(true);        // ERROR "cannot refer|undefined identifier"
 }