From: Ian Lance Taylor Date: Thu, 15 Jan 2009 18:15:23 +0000 (-0800) Subject: Recognize gccgo error messages: X-Git-Tag: weekly.2009-11-06~2379 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=87af75ff7478de95ba8a9ec70b7470127fd48323;p=gostls13.git Recognize gccgo error messages: interface5.go:15:5: error: incompatible types in assignment interface5.go:16:5: error: incompatible types in assignment (Yes, these could be better). R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=22821 CL=22826 --- diff --git a/test/interface5.go b/test/interface5.go index a7d79a17bc..2e273ddddb 100644 --- a/test/interface5.go +++ b/test/interface5.go @@ -16,6 +16,6 @@ func main() { // neither of these can work, // because i has an extra method // that t does not, so i cannot contain a t. - i = t; // ERROR "missing" - t = i; // ERROR "missing" + i = t; // ERROR "missing|incompatible" + t = i; // ERROR "missing|incompatible" }