Home | History | Annotate | Download | only in test

Lines Matching refs:interface

7 // Test conversion from non-interface types to the empty interface.
11 type J interface {
61 iu16 interface{} = u16
62 iu32 interface{} = u32
63 iu64 interface{} = u64
64 iu128 interface{} = u128
65 if32 interface{} = f32
66 if64 interface{} = f64
67 ic128 interface{} = c128
68 is interface{} = s
69 ib interface{} = b
70 im interface{} = m
71 ic interface{} = c
72 iz interface{} = z
73 ip interface{} = p
74 ipp interface{} = pp
92 func second(a ...interface{}) interface{} {
170 // Test that non-interface types can be used as ...interface{} arguments.
176 // Test that non-interface types can be sent on a chan interface{}.
178 uc := make(chan interface{})