Match gccgo error message.

bug251.go:11:2: error: invalid recursive interface

R=rsc
CC=golang-dev
https://golang.org/cl/204052
This commit is contained in:
Ian Lance Taylor 2010-02-05 20:56:20 -08:00
parent 635093e4b1
commit 3c686bd23f

View File

@ -8,7 +8,7 @@ package main
type I1 interface {
m() I2
I2 // ERROR "loop"
I2 // ERROR "loop|interface"
}
type I2 interface {