diff options
author | Ian Lance Taylor <iant@golang.org> | 2010-01-30 11:31:06 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2010-01-30 11:31:06 -0800 |
commit | 2ff02e7748b40a1c64736db79ddd458d4edff65a (patch) | |
tree | 50cfed2cf38a9d0f2c8d84e5a537d91d685dcc5c | |
parent | 3ac6317614c1b0592749948ec2a4932014c53f80 (diff) | |
download | golang-2ff02e7748b40a1c64736db79ddd458d4edff65a.tar.gz |
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
-rw-r--r-- | test/fixedbugs/bug231.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |