From 3c686bd23f8faaacf67ad0e4c55ccd02b8db76f3 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 5 Feb 2010 20:56:20 -0800 Subject: [PATCH] Match gccgo error message. bug251.go:11:2: error: invalid recursive interface R=rsc CC=golang-dev https://golang.org/cl/204052 --- test/fixedbugs/bug251.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.50.0