From: Ian Lance Taylor Date: Fri, 31 Oct 2008 21:55:57 +0000 (-0700) Subject: Recognize gccgo error message: X-Git-Tag: weekly.2009-11-06~2834 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2eb17d78947efbb3140f8ab4e017693fc633301d;p=gostls13.git Recognize gccgo error message: interface1.go:29:6: error: incompatible type in initialization (missing method Next) R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=18183 CL=18271 --- diff --git a/test/interface1.go b/test/interface1.go index 089a8b5c1b..c81cad54ba 100644 --- a/test/interface1.go +++ b/test/interface1.go @@ -30,6 +30,6 @@ func AddInst(Inst) *Inst { func main() { re := new(Regexp); print("call addinst\n"); - var x Inst = AddInst(new(Start)); // ERROR "illegal" + var x Inst = AddInst(new(Start)); // ERROR "illegal|incompatible" print("return from addinst\n"); }