diff options
author | Ian Lance Taylor <iant@golang.org> | 2010-02-05 20:56:20 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2010-02-05 20:56:20 -0800 |
commit | c3b3df7d544bf82afbebaac7fb8cbab4683850b8 (patch) | |
tree | b17780dbede8b8dcbad90e32a9309c69ac44c5e6 | |
parent | dd133293c6e48d74515dac4633e0757136142fdb (diff) | |
download | golang-c3b3df7d544bf82afbebaac7fb8cbab4683850b8.tar.gz |
Match gccgo error message.
bug251.go:11:2: error: invalid recursive interface
R=rsc
CC=golang-dev
http://codereview.appspot.com/204052
-rw-r--r-- | test/fixedbugs/bug251.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug251.go b/test/fixedbugs/bug251.go index 1dc712fa7..f6365f1e6 100644 --- a/test/fixedbugs/bug251.go +++ b/test/fixedbugs/bug251.go @@ -8,7 +8,7 @@ package main type I1 interface { m() I2 - I2 // ERROR "loop" + I2 // ERROR "loop|interface" } type I2 interface { |