From: Ian Lance Taylor Date: Fri, 25 Mar 2011 20:31:30 +0000 (-0700) Subject: test: match gccgo error messages for bug016.go. X-Git-Tag: weekly.2011-03-28~26 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=47c1cef56b77263bcabada3f193d1c8f271879e7;p=gostls13.git test: match gccgo error messages for bug016.go. bug016.go:11:8: error: negative shift count R=rsc, gri CC=golang-dev https://golang.org/cl/4312055 --- diff --git a/test/fixedbugs/bug016.go b/test/fixedbugs/bug016.go index 1cdd8df084..4fbfd48fd9 100644 --- a/test/fixedbugs/bug016.go +++ b/test/fixedbugs/bug016.go @@ -8,7 +8,7 @@ package main func main() { var i int = 100 - i = i << -3 // ERROR "overflows" + i = i << -3 // ERROR "overflows|negative" } /*