Hello rsc (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
LGTM On Fri, Mar 25, 2011 at 12:27 PM, <iant@golang.org> wrote: > Reviewers: rsc, > > Message: > Hello rsc (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > test: match gccgo error messages for bug016.go. > > bug016.go:11:8: error: negative shift count > > Please review this at http://codereview.appspot.com/4312055/ > > Affected files: > M test/fixedbugs/bug016.go > > > Index: test/fixedbugs/bug016.go > =================================================================== > --- a/test/fixedbugs/bug016.go > +++ b/test/fixedbugs/bug016.go > @@ -8,7 +8,7 @@ > > func main() { > var i int = 100 > - i = i << -3 // ERROR "overflows" > + i = i << -3 // ERROR "overflows|negative" > } > > /* > > >
LGTM
*** Submitted as http://code.google.com/p/go/source/detail?r=56b847e640f3 *** test: match gccgo error messages for bug016.go. bug016.go:11:8: error: negative shift count R=rsc, gri CC=golang-dev http://codereview.appspot.com/4312055