Home | History | Annotate | Download | only in gc

Lines Matching refs:got

20 	if got := i.(int); got != 5 {
21 t.Errorf("wanted 5, got %d\n", got)
30 if got := i.(int); got != 5 {
31 t.Errorf("wanted 5, got %d\n", got)
37 if got := e2int3(x); got != 5 {
38 t.Errorf("wanted 5, got %d\n", got)
50 if got := e2int4(a, &a); got != 5 {
51 t.Errorf("wanted 5, got %d\n", got)
76 if got := i.(Int); got != 5 {
77 t.Errorf("wanted 5, got %d\n", int(got))
86 if got := i.(Int); got != 5 {
87 t.Errorf("wanted 5, got %d\n", int(got))
93 if got := i2Int3(y); got != 5 {
94 t.Errorf("wanted 5, got %d\n", int(got))
106 if got := i2Int4(a, &a); got != 5 {
107 t.Errorf("wanted 5, got %d\n", int(got))