• Russ Cox's avatar
    gc: better error messages for interface failures, conversions · a212d174
    Russ Cox authored
    x.go:13: cannot use t (type T) as type Reader in assignment:
    	T does not implement Reader (Read method requires pointer receiver)
    x.go:19: cannot use q (type Q) as type Reader in assignment:
    	Q does not implement Reader (missing Read method)
    		have read()
    		want Read()
    x.go:22: cannot use z (type int) as type Reader in assignment:
    	int does not implement Reader (missing Read method)
    
    x.go:24: too many arguments to conversion to complex: complex(1, 3)
    
    R=ken2
    CC=golang-dev
    https://golang.org/cl/1736041
    a212d174
Name
Last commit
Last update
..
Makefile Loading commit data...
cgen.c Loading commit data...
doc.go Loading commit data...
galign.c Loading commit data...
gg.h Loading commit data...
ggen.c Loading commit data...
gobj.c Loading commit data...
gsubr.c Loading commit data...
list.c Loading commit data...
opt.h Loading commit data...
peep.c Loading commit data...
reg.c Loading commit data...