Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:interface

27 // Test correct construction of static empty interface values
29 x interface{}
46 {(interface{})(io.Writer((*os.File)(nil))), "*os.File <nil>"},
55 type Strunger interface {
60 // Test correct construction of static non-empty interface values
74 // Test correct handling of direct interface values
77 iptr interface{} = &one
79 f interface{} = func() { clos++ }
80 deep interface{} = [1]struct{ a *[2]byte }{{a: &[2]byte{'z', 'w'}}}
81 ch interface{} = make(chan bool, 1)