From: Ian Lance Taylor Date: Tue, 17 Mar 2009 04:48:07 +0000 (-0700) Subject: Recognize gccgo error message. X-Git-Tag: weekly.2009-11-06~2016 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bd64e8104175ef68911180f1d0dbbd79e247e555;p=gostls13.git Recognize gccgo error message. const2.go:7:9: error: expected '=' Uses '.' to recognize the quotation marks, as the actual characters printed depend on the user's locale. R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=26360 CL=26373 --- diff --git a/test/const2.go b/test/const2.go index b3b10de8e7..2ff71ee232 100644 --- a/test/const2.go +++ b/test/const2.go @@ -8,5 +8,5 @@ package main const ( A int = 1; - B byte; // ERROR "type without expr" + B byte; // ERROR "type without expr|expected .=." )