1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:34:40 -07:00

test: match gccgo error messages for bug388.go

As runtime.UintType is no longer defined, the gccgo error
messages have changed.

bug388.go:12:10: error: reference to undefined identifier ‘runtime.UintType’
bug388.go:12:10: error: invalid named/anonymous mix
bug388.go:13:21: error: reference to undefined identifier ‘runtime.UintType’
bug388.go:17:10: error: reference to undefined identifier ‘runtime.UintType’
bug388.go:18:18: error: reference to undefined identifier ‘runtime.UintType’
bug388.go:22:9: error: non-name on left side of ‘:=’
bug388.go:27:10: error: expected type
bug388.go:32:9: error: expected type
bug388.go:23:14: error: reference to field ‘i’ in object which has no fields or methods

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5755044
This commit is contained in:
Ian Lance Taylor 2012-03-05 16:21:46 -08:00
parent d9832987ba
commit 06b7024462

View File

@ -9,13 +9,13 @@
package main package main
import "runtime" import "runtime"
func foo(runtime.UintType, i int) { // ERROR "cannot declare name runtime.UintType|named/anonymous mix" func foo(runtime.UintType, i int) { // ERROR "cannot declare name runtime.UintType|named/anonymous mix|undefined identifier"
println(i, runtime.UintType) println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier"
} }
func bar(i int) { func bar(i int) {
runtime.UintType := i // ERROR "cannot declare name runtime.UintType|non-name on left side" runtime.UintType := i // ERROR "cannot declare name runtime.UintType|non-name on left side|undefined identifier"
println(runtime.UintType) // GCCGO_ERROR "invalid use of type" println(runtime.UintType) // GCCGO_ERROR "invalid use of type|undefined identifier"
} }
func baz() { func baz() {