Home | History | Annotate | Download | only in test

Lines Matching refs:want

31 	want := typeof(g)
32 if t := typeof(f); t != want {
33 println("type of f is", t, "want", want)
37 want = typeof(a)
38 if t := typeof(+a); t != want {
39 println("type of +a is", t, "want", want)
42 if t := typeof(a + 0); t != want {
43 println("type of a+0 is", t, "want", want)