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
This commit is contained in:
Ian Lance Taylor 2011-09-20 09:31:07 -07:00
parent fd3978552b
commit c55d0c4dd7

View file

@ -14,6 +14,6 @@
package main
func main() {
len("foo") // ERROR "len"
len("foo") // ERROR "len|value computed is not used"
}