Commit f4d714ca authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 5163d50c
...@@ -17,6 +17,6 @@ func main() { ...@@ -17,6 +17,6 @@ func main() {
var i I var i I
i = m i = m
i = t // ERROR "not a method" i = t // ERROR "not a method|has no methods"
_ = i _ = i
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment