Home | History | Annotate | Download | only in bug248.dir

Lines Matching refs:I0

19 type I0 interface {
27 // t0 satisfies I0 and p0.I
38 var i0 I0 = t0(0) // ok
41 var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
59 i0 = i1 // ERROR "cannot use|incompatible"
60 i1 = i0 // ERROR "cannot use|incompatible"
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
68 i0 = p0i
69 p0i = i0