Home | History | Annotate | Download | only in interface

Lines Matching full:inlined

10 	return x.(*int) // ERROR "type assertion inlined"
14 z, ok := x.(*int) // ERROR "type assertion inlined"
19 return x.(func()) // ERROR "type assertion inlined"
23 z, ok := x.(func()) // ERROR "type assertion inlined"
28 return x.(struct{ *int }) // ERROR "type assertion inlined"
32 z, ok := x.(struct{ *int }) // ERROR "type assertion inlined"
37 return x.(complex128) // ERROR "type assertion inlined"
41 z, ok := x.(complex128) // ERROR "type assertion inlined"
46 _, ok := x.(complex128) // ERROR "type assertion inlined"
51 return x.([]int) // ERROR "type assertion inlined"
55 z, ok := x.([]int) // ERROR "type assertion inlined"
60 _, ok := x.([]int) // ERROR "type assertion inlined"
69 return x.(I) // ERROR "type assertion not inlined"
72 z, ok := x.(I) // ERROR "type assertion not inlined"