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

Recognize gccgo error message.

   explicit.go:21:5: error: incompatible types in assignment (need explicit conversion)
   explicit.go:26:5: error: incompatible types in assignment (type has no methods)
   explicit.go:27:5: error: incompatible types in assignment (need explicit conversion)
   explicit.go:30:6: error: incompatible types in assignment (need explicit conversion; missing method ‘N’)
   explicit.go:33:7: error: invalid type conversion (need explicit conversion; missing method ‘N’)
   explicit.go:36:5: error: incompatible types in assignment

R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=31805
CL=31807
parent 25b4be5a
......@@ -37,5 +37,5 @@ func main() {
i2 = I2(i); // ERROR "need explicit|need type assertion"
e = E(t); // ok
t = T(e); // ERROR "need explicit|need type assertion"
t = T(e); // ERROR "need explicit|need type assertion|incompatible"
}
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