diff options
author | Ian Lance Taylor <iant@golang.org> | 2011-03-25 15:28:53 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2011-03-25 15:28:53 -0700 |
commit | 1dd68272c4f1d7f211a475f9c7646114b68605c7 (patch) | |
tree | 363d5772f19956098d1bba27e940ccaba067c559 /test/fixedbugs/bug081.go | |
parent | 42ecc903562be241a65b8aa4689d6daa8a6faef4 (diff) | |
download | go-1dd68272c4f1d7f211a475f9c7646114b68605c7.tar.gz |
test: match gccgo error messages for bug081.go.
bug081.go:9:9: error: expected type
R=rsc
CC=golang-dev
http://codereview.appspot.com/4280071
Diffstat (limited to 'test/fixedbugs/bug081.go')
-rw-r--r-- | test/fixedbugs/bug081.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug081.go b/test/fixedbugs/bug081.go index 8d3d538c8..026ce8002 100644 --- a/test/fixedbugs/bug081.go +++ b/test/fixedbugs/bug081.go @@ -6,7 +6,7 @@ package main -const x x = 2 // ERROR "loop" +const x x = 2 // ERROR "loop|type" /* bug081.go:3: first constant must evaluate an expression |