From 2ff02e7748b40a1c64736db79ddd458d4edff65a Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 30 Jan 2010 11:31:06 -0800 Subject: Match gccgo error message. bug231.go:20:4: error: incompatible types in assignment (type has no methods) R=rsc CC=golang-dev http://codereview.appspot.com/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 e11200b9c..91996d313 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 } -- cgit v1.2.3