diff options
author | Ian Lance Taylor <iant@golang.org> | 2009-03-16 21:48:07 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2009-03-16 21:48:07 -0700 |
commit | 834f8e784143f7cf18ea96ab4259edd021cd6a5c (patch) | |
tree | 1e09796081fc5874889dcecf9c3db9846b66f8b3 /test | |
parent | aec388eb0568f204d290257279a988822b7b5d16 (diff) | |
download | golang-834f8e784143f7cf18ea96ab4259edd021cd6a5c.tar.gz |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/const2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/const2.go b/test/const2.go index b3b10de8e..2ff71ee23 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 .=." ) |