From c23657e76e73d808530068b95a8021d979f65763 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 8 Sep 2010 21:03:51 -0700 Subject: [PATCH] test: Match gccgo error messages. named1.go:40:11: error: argument 1 has incompatible type (cannot use type bool as type Bool) named1.go:41:11: error: argument 1 has incompatible type (cannot use type bool as type Bool) named1.go:43:7: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:44:12: error: argument 4 has incompatible type (cannot use type Bool as type bool) named1.go:46:4: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:48:11: error: argument 1 has incompatible type (cannot use type bool as type Bool) named1.go:50:7: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:54:7: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:60:7: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:63:9: error: argument 1 has incompatible type (cannot use type bool as type Bool) named1.go:64:4: error: incompatible types in assignment (cannot use type bool as type Bool) named1.go:67:17: error: invalid type conversion (cannot use type Slice as type String) R=rsc CC=golang-dev https://golang.org/cl/2146044 --- test/named1.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/named1.go b/test/named1.go index 241697d5c0..600e502f9e 100644 --- a/test/named1.go +++ b/test/named1.go @@ -64,5 +64,5 @@ func main() { b = closed(c) // ERROR "cannot use.*type bool.*type Bool" _ = b - asString(String(slice)) // ERROR "cannot convert slice" + asString(String(slice)) // ERROR "cannot .*type Slice.*type String" } -- 2.50.0