Commit 5163d50c authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 5647e604
......@@ -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"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment