]> Cypherpunks repositories - gostls13.git/commitdiff
Match gccgo error message.
authorIan Lance Taylor <iant@golang.org>
Sat, 6 Feb 2010 04:56:20 +0000 (20:56 -0800)
committerIan Lance Taylor <iant@golang.org>
Sat, 6 Feb 2010 04:56:20 +0000 (20:56 -0800)
bug251.go:11:2: error: invalid recursive interface

R=rsc
CC=golang-dev
https://golang.org/cl/204052

test/fixedbugs/bug251.go

index 1dc712fa7c3a1605efea73686b10c0e87d87a8d2..f6365f1e630950d0dea9f39ddb28297b3ad9002f 100644 (file)
@@ -8,7 +8,7 @@ package main
 
 type I1 interface {
        m() I2
-       I2      // ERROR "loop"
+       I2      // ERROR "loop|interface"
 }
 
 type I2 interface {