]> Cypherpunks repositories - gostls13.git/commitdiff
Match gccgo error messages.
authorIan Lance Taylor <iant@golang.org>
Sat, 6 Feb 2010 02:38:27 +0000 (18:38 -0800)
committerIan Lance Taylor <iant@golang.org>
Sat, 6 Feb 2010 02:38:27 +0000 (18:38 -0800)
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
https://golang.org/cl/204048

test/ddd1.go

index 4f830c582f1e817ab3480ff38922b426b418fbd0..6f714c078aaca50ceb8a9e51ebf0f3a27c1cb6ff 100644 (file)
@@ -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