aboutsummaryrefslogtreecommitdiff
path: root/test/blank1.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2013-09-28 15:19:05 -0700
committerIan Lance Taylor <iant@golang.org>2013-09-28 15:19:05 -0700
commit4da408f676087d6e22356e2564a3e23d49440d16 (patch)
tree0816ba5fbf2a9a8896d4aa3abffa2cc7b0206ff0 /test/blank1.go
parentbdafe73ce4f4910efd71eb5fdd7a5fc4614a9afe (diff)
downloadgo-4da408f676087d6e22356e2564a3e23d49440d16.tar.gz
go-4da408f676087d6e22356e2564a3e23d49440d16.zip
test: match gccgo error messages for blank1.go
blank1.go:10:9: error: invalid package name _ blank1.go:17:2: error: cannot use _ as value blank1.go:18:7: error: cannot use _ as value blank1.go:20:8: error: invalid use of ‘_’ R=golang-dev, r CC=golang-dev https://golang.org/cl/14088044
Diffstat (limited to 'test/blank1.go')
-rw-r--r--test/blank1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/blank1.go b/test/blank1.go
index f46a50051b..54a72976b7 100644
--- a/test/blank1.go
+++ b/test/blank1.go
@@ -21,7 +21,7 @@ func main() {
_() // ERROR "cannot use _ as value"
x := _+1 // ERROR "cannot use _ as value"
_ = x
- _ = t._ // ERROR "cannot refer to blank field"
+ _ = t._ // ERROR "cannot refer to blank field|invalid use of"
var v1, v2 T
_ = v1 == v2 // ERROR "cannot be compared|non-comparable"