aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2020-12-14 22:27:32 -0800
committerIan Lance Taylor <iant@golang.org>2020-12-15 21:01:37 +0000
commit685a322fe404d725e6bfb2766388c4b95ed84603 (patch)
treea6e735388fa90273c01990103b70c9a93dd1a9ba /test
parent3d6467824ce42a5ca699b537bcd85f40c63a065e (diff)
downloadgo-685a322fe404d725e6bfb2766388c4b95ed84603.tar.gz
go-685a322fe404d725e6bfb2766388c4b95ed84603.zip
test: match gofrontend error messages
fixedbugs/issue11614.go:14:9: error: interface contains embedded non-interface fixedbugs/issue11614.go:22:20: error: interface contains embedded non-interface Change-Id: Ie9875916697833f5fa28ab890218851a741120ac Reviewed-on: https://go-review.googlesource.com/c/go/+/278175 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/issue11614.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/issue11614.go b/test/fixedbugs/issue11614.go
index d1642a3faf..de15f9827f 100644
--- a/test/fixedbugs/issue11614.go
+++ b/test/fixedbugs/issue11614.go
@@ -19,7 +19,7 @@ func n() {
}
func m() {
- (interface{int}) // ERROR "interface contains embedded non-interface int" "type interface { int } is not an expression"
+ (interface{int}) // ERROR "interface contains embedded non-interface" "type interface { int } is not an expression"
}
func main() {