Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:interface

9 type I1 interface { I2 }	// ERROR "interface"
12 type I3 interface { int } // ERROR "interface"
15 x interface{ S } // ERROR "interface"
17 type I4 interface { // GC_ERROR "invalid recursive type"
18 I4 // GCCGO_ERROR "interface"
21 type I5 interface {
22 I6 // GCCGO_ERROR "interface"
25 type I6 interface { // GC_ERROR "invalid recursive type"
26 I5 // GCCGO_ERROR "interface"