summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug251.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-02-05 20:56:20 -0800
committerIan Lance Taylor <iant@golang.org>2010-02-05 20:56:20 -0800
commit0bd7235808e2b3b3936abf4bc016cd0d87a45dd2 (patch)
treeb17780dbede8b8dcbad90e32a9309c69ac44c5e6 /test/fixedbugs/bug251.go
parent5a3c019d9ad098100bf98e3374eba99073eaacc8 (diff)
downloadgo-0bd7235808e2b3b3936abf4bc016cd0d87a45dd2.tar.gz
Match gccgo error message.
bug251.go:11:2: error: invalid recursive interface R=rsc CC=golang-dev http://codereview.appspot.com/204052
Diffstat (limited to 'test/fixedbugs/bug251.go')
-rw-r--r--test/fixedbugs/bug251.go2
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 {