From: Ian Lance Taylor Date: Sat, 6 Feb 2010 04:56:20 +0000 (-0800) Subject: Match gccgo error message. X-Git-Tag: weekly.2010-02-17~72 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3c686bd23f8faaacf67ad0e4c55ccd02b8db76f3;p=gostls13.git Match gccgo error message. bug251.go:11:2: error: invalid recursive interface R=rsc CC=golang-dev https://golang.org/cl/204052 --- diff --git a/test/fixedbugs/bug251.go b/test/fixedbugs/bug251.go index 1dc712fa7c..f6365f1e63 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 {