From: Ian Lance Taylor Date: Sat, 6 Feb 2010 02:38:27 +0000 (-0800) Subject: Match gccgo error messages. X-Git-Tag: weekly.2010-02-17~73 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=635093e4b178c2605604bb1a33456540c7f7e740;p=gostls13.git 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 https://golang.org/cl/204048 --- diff --git a/test/ddd1.go b/test/ddd1.go index 4f830c582f..6f714c078a 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