Commit dbc226d5 authored by Ian Lance Taylor's avatar Ian Lance Taylor

test: Match gccgo error messages.

gccgo does not handle 'new' specially here.

varerr.go:10:6: error: reference to undefined name ‘asdf’
varerr.go:12:6: error: invalid left hand side of assignment

R=rsc
CC=golang-dev
https://golang.org/cl/2139045
parent d1b434b8
......@@ -7,8 +7,8 @@
package main
func main() {
_ = asdf // ERROR "undefined: asdf"
_ = asdf // ERROR "undefined.*asdf"
new = 1 // ERROR "use of builtin new not in function call"
new = 1 // ERROR "use of builtin new not in function call|invalid left hand side"
}
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