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

test: match gccgo error messages for init.go

init.go:16:10: error: invalid reference to unexported identifier ‘runtime.init’
init.go:15:2: error: reference to undefined name ‘init’
init.go:17:10: error: reference to undefined name ‘init’

R=golang-dev, rsc1
CC=golang-dev
https://golang.org/cl/4289074
parent a4df525a
......@@ -12,7 +12,7 @@ func init() {
}
func main() {
init() // ERROR "undefined: init"
init() // ERROR "undefined.*init"
runtime.init() // ERROR "unexported.*runtime\.init"
var _ = init // ERROR "undefined: init"
var _ = init // ERROR "undefined.*init"
}
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