From 102357f028c35c44a85ded1a281b11d95839f7c0 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 2 Nov 2009 10:12:40 -0800 Subject: [PATCH] Recognize gccgo error message. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit runtime.go:19:10: error: reference to undefined identifier ‘runtime.printbool’ R=rsc http://go/go-review/1018018 --- test/runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } -- 2.50.0