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

Lines Matching refs:interface

8 // It defines a local interface with an unexported method
11 func F(x interface{}) bool {
12 _, ok := x.(interface {
18 // Like F but with the unexported interface method f
19 // defined via an embedded interface t. The compiler
24 func G(x interface{}) bool {
25 type t0 interface {
28 _, ok := x.(interface {
34 // Like G but now the embedded interface is declared
38 func H(x interface{}) bool {
39 _, ok := x.(interface {
45 type t1 interface {