Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:work

23 	mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I1
81 m1[17] = 42 // this should work: 17 is assignment-compatible with I1
82 m1["foo"] = 42 // this should work: "foo" is assignment-compatible with I1
84 m2[new(T2)] = 42 // this should work: *T2 is assignment-compatible with I2