From 47c1cef56b77263bcabada3f193d1c8f271879e7 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 25 Mar 2011 13:31:30 -0700 Subject: [PATCH] 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 --- test/fixedbugs/bug016.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } /* -- 2.50.0