Recognize gccgo error message.

runtime.go:19:10: error: reference to undefined identifier ‘runtime.printbool’

R=rsc
http://go/go-review/1018018
This commit is contained in:
Ian Lance Taylor 2009-11-02 10:12:40 -08:00
parent acc54b6c70
commit 102357f028

View 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"
}