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

Lines Matching refs:interface

11 type Imported interface {
24 x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)"
25 x.do() // ERROR "x\.do undefined \(type \*Imported is pointer to interface, not interface\)"
27 x.Dont() // ERROR "x\.Dont undefined \(type \*Imported is pointer to interface, not interface\)"
37 z.Do() // ERROR "z\.Do undefined \(type \*other\.Exported is pointer to interface, not interface\)"
38 z.do() // ERROR "z\.do undefined \(type \*other\.Exported is pointer to interface, not interface\)"
41 z.Dont() // ERROR "z\.Dont undefined \(type \*other\.Exported is pointer to interface, not interface\)"
43 z.secret() // ERROR "z\.secret undefined \(type \*other\.Exported is pointer to interface, not interface\)"