aboutsummaryrefslogtreecommitdiff
path: root/test/blank1.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2019-06-22 12:56:49 -0700
committerIan Lance Taylor <iant@golang.org>2019-06-23 22:20:39 +0000
commitc290cb6338fe9ce7d8ade3adbb4acd0f0e6172e4 (patch)
treec58359bae3c6881b0796beaf6fb61045feaab1e1 /test/blank1.go
parent295419d0b446bd8e7310966be561c9196d92dc5a (diff)
downloadgo-c290cb6338fe9ce7d8ade3adbb4acd0f0e6172e4.tar.gz
go-c290cb6338fe9ce7d8ade3adbb4acd0f0e6172e4.zip
test: update blank1.go for changed gofrontend error messages
Adjusting gofrontend error messages for GCC standards causes the messages expected by this test to be adjusted slightly: the gofrontend code now quotes the _ identifier. Change-Id: I55ee2ae70b4da3bf7a421ceea80b254dd17601a9 Reviewed-on: https://go-review.googlesource.com/c/go/+/183477 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'test/blank1.go')
-rw-r--r--test/blank1.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/blank1.go b/test/blank1.go
index bf94d1a0fb..1a9f012464 100644
--- a/test/blank1.go
+++ b/test/blank1.go
@@ -7,7 +7,7 @@
// Test that incorrect uses of the blank identifer are caught.
// Does not compile.
-package _ // ERROR "invalid package name _"
+package _ // ERROR "invalid package name"
var t struct {
_ int
@@ -22,8 +22,8 @@ type T struct {
}
func main() {
- _() // ERROR "cannot use _ as value"
- x := _+1 // ERROR "cannot use _ as value"
+ _() // ERROR "cannot use .* as value"
+ x := _+1 // ERROR "cannot use .* as value"
_ = x
_ = t._ // ERROR "cannot refer to blank field|invalid use of"