From: Ian Lance Taylor Date: Tue, 20 Sep 2011 16:31:07 +0000 (-0700) Subject: test: match gccgo error message for bug337.go X-Git-Tag: weekly.2011-09-21~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c55d0c4dd7947433a21171ccd4ad90592d8b04e7;p=gostls13.git test: match gccgo error message for bug337.go bug337.go:17:2: error: value computed is not used R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5094042 --- diff --git a/test/fixedbugs/bug337.go b/test/fixedbugs/bug337.go index 62e310e725..ca9b4b4536 100644 --- a/test/fixedbugs/bug337.go +++ b/test/fixedbugs/bug337.go @@ -14,6 +14,6 @@ package main func main() { - len("foo") // ERROR "len" + len("foo") // ERROR "len|value computed is not used" }