summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2009-10-26 16:06:46 -0700
committerIan Lance Taylor <iant@golang.org>2009-10-26 16:06:46 -0700
commit69ec3d4c75ef604ebc842edb80d8e37ac4ed2c5b (patch)
treeaa9bf263ee0f48eaf4d24734bb7c88f29609f6f5
parent0c0aadc7ade485a23132fbb96bf3108f5b7a0876 (diff)
downloadgo-69ec3d4c75ef604ebc842edb80d8e37ac4ed2c5b.tar.gz
Recognize gccgo error messages.
rename1.go:10:8: error: expected type rename1.go:11:10: error: expected function rename1.go:13:8: error: incompatible types in binary expression R=rsc http://go/go-review/1015013
-rw-r--r--test/rename1.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rename1.go b/test/rename1.go
index eb98e7acc..2224773e9 100644
--- a/test/rename1.go
+++ b/test/rename1.go
@@ -7,10 +7,10 @@
package main
func main() {
- var n byte; // ERROR "not a type"
- var y = float(0); // ERROR "cannot call"
+ var n byte; // ERROR "not a type|expected type"
+ var y = float(0); // ERROR "cannot call|expected function"
const (
- a = 1+iota; // ERROR "string"
+ a = 1+iota; // ERROR "string|incompatible types"
)
}