From f4d714ca2def2b1435b2f36cda55e38e49f2fb60 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 30 Jan 2010 11:31:06 -0800 Subject: [PATCH] Match gccgo error message. bug231.go:20:4: error: incompatible types in assignment (type has no methods) R=rsc CC=golang-dev https://golang.org/cl/194156 --- test/fixedbugs/bug231.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixedbugs/bug231.go b/test/fixedbugs/bug231.go index e11200b9c5..91996d313c 100644 --- a/test/fixedbugs/bug231.go +++ b/test/fixedbugs/bug231.go @@ -17,6 +17,6 @@ func main() { var i I i = m - i = t // ERROR "not a method" + i = t // ERROR "not a method|has no methods" _ = i } -- 2.50.0