From: Ian Lance Taylor Date: Sat, 30 Jan 2010 06:38:39 +0000 (-0800) Subject: Recognize gccgo error messages. X-Git-Tag: weekly.2010-02-04~56 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5163d50c7dfb6c3e11ec67b01b61d1640ed51531;p=gostls13.git Recognize gccgo error messages. bug228.go:11:25: error: invalid use of ‘...’ bug228.go:13:13: error: ‘...’ only permits one name bug228.go:15:20: error: ‘...’ must be last parameter bug228.go:17:7: error: expected type bug228.go:19:8: error: expected type R=rsc CC=golang-dev https://golang.org/cl/196077 --- diff --git a/test/fixedbugs/bug228.go b/test/fixedbugs/bug228.go index 682152ed91..243d20ee7c 100644 --- a/test/fixedbugs/bug228.go +++ b/test/fixedbugs/bug228.go @@ -14,6 +14,6 @@ func h(x, y ...) // ERROR "[.][.][.]" func i(x int, y ..., z float) // ERROR "[.][.][.]" -var x ...; // ERROR "[.][.][.]|syntax" +var x ...; // ERROR "[.][.][.]|syntax|type" -type T ...; // ERROR "[.][.][.]|syntax" +type T ...; // ERROR "[.][.][.]|syntax|type"