diff options
author | Ian Lance Taylor <iant@golang.org> | 2010-02-05 18:38:27 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2010-02-05 18:38:27 -0800 |
commit | dd133293c6e48d74515dac4633e0757136142fdb (patch) | |
tree | 1545a17db668b3e2425434ed66609d2de83e1a21 | |
parent | e9a99e594a08526d8ebb1e0ef083c93831b16a6f (diff) | |
download | golang-dd133293c6e48d74515dac4633e0757136142fdb.tar.gz |
Match gccgo error messages.
ddd1.go:16:10: error: argument 1 has incompatible type
ddd1.go:17:10: error: argument 1 has incompatible type
ddd1.go:15:10: error: floating point constant truncated to integer
R=rsc
CC=golang-dev
http://codereview.appspot.com/204048
-rw-r--r-- | test/ddd1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ddd1.go b/test/ddd1.go index 4f830c582..6f714c078 100644 --- a/test/ddd1.go +++ b/test/ddd1.go @@ -13,8 +13,8 @@ var ( _ = sum() _ = sum(1.0, 2.0) _ = sum(1.5) // ERROR "integer" - _ = sum("hello") // ERROR "convert" - _ = sum([]int{1}) // ERROR "slice literal.*as type int" + _ = sum("hello") // ERROR "convert|incompatible" + _ = sum([]int{1}) // ERROR "slice literal.*as type int|incompatible" ) type T []T |