]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/types2/api_test.go
go/types, types2: AssertableTo is undefined for generalized interfaces
[gostls13.git] / src / cmd / compile / internal / types2 / api_test.go
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package types2_test
6
7 import (
8         "bytes"
9         "cmd/compile/internal/syntax"
10         "errors"
11         "fmt"
12         "internal/testenv"
13         "reflect"
14         "regexp"
15         "strings"
16         "testing"
17
18         . "cmd/compile/internal/types2"
19 )
20
21 // brokenPkg is a source prefix for packages that are not expected to parse
22 // or type-check cleanly. They are always parsed assuming that they contain
23 // generic code.
24 const brokenPkg = "package broken_"
25
26 func parseSrc(path, src string) (*syntax.File, error) {
27         errh := func(error) {} // dummy error handler so that parsing continues in presence of errors
28         return syntax.Parse(syntax.NewFileBase(path), strings.NewReader(src), errh, nil, syntax.AllowGenerics|syntax.AllowMethodTypeParams)
29 }
30
31 func pkgFor(path, source string, info *Info) (*Package, error) {
32         f, err := parseSrc(path, source)
33         if err != nil {
34                 return nil, err
35         }
36         conf := Config{Importer: defaultImporter()}
37         return conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
38 }
39
40 func mustTypecheck(t *testing.T, path, source string, info *Info) string {
41         pkg, err := pkgFor(path, source, info)
42         if err != nil {
43                 name := path
44                 if pkg != nil {
45                         name = "package " + pkg.Name()
46                 }
47                 t.Fatalf("%s: didn't type-check (%s)", name, err)
48         }
49         return pkg.Name()
50 }
51
52 func mayTypecheck(t *testing.T, path, source string, info *Info) (string, error) {
53         f, err := parseSrc(path, source)
54         if f == nil { // ignore errors unless f is nil
55                 t.Fatalf("%s: unable to parse: %s", path, err)
56         }
57         conf := Config{
58                 Error:    func(err error) {},
59                 Importer: defaultImporter(),
60         }
61         pkg, err := conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
62         return pkg.Name(), err
63 }
64
65 func TestValuesInfo(t *testing.T) {
66         var tests = []struct {
67                 src  string
68                 expr string // constant expression
69                 typ  string // constant type
70                 val  string // constant value
71         }{
72                 {`package a0; const _ = false`, `false`, `untyped bool`, `false`},
73                 {`package a1; const _ = 0`, `0`, `untyped int`, `0`},
74                 {`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
75                 {`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
76                 {`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
77                 {`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
78
79                 {`package b0; var _ = false`, `false`, `bool`, `false`},
80                 {`package b1; var _ = 0`, `0`, `int`, `0`},
81                 {`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
82                 {`package b3; var _ = 0.`, `0.`, `float64`, `0`},
83                 {`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
84                 {`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
85
86                 {`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
87                 {`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
88                 {`package c0c; type T bool; var _ = T(false)`, `T(false)`, `c0c.T`, `false`},
89
90                 {`package c1a; var _ = int(0)`, `0`, `int`, `0`},
91                 {`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`},
92                 {`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`},
93
94                 {`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`},
95                 {`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`},
96                 {`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`},
97
98                 {`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`},
99                 {`package c3b; var _ = float32(0.)`, `float32(0.)`, `float32`, `0`},
100                 {`package c3c; type T float32; var _ = T(0.)`, `T(0.)`, `c3c.T`, `0`},
101
102                 {`package c4a; var _ = complex64(0i)`, `0i`, `complex64`, `(0 + 0i)`},
103                 {`package c4b; var _ = complex64(0i)`, `complex64(0i)`, `complex64`, `(0 + 0i)`},
104                 {`package c4c; type T complex64; var _ = T(0i)`, `T(0i)`, `c4c.T`, `(0 + 0i)`},
105
106                 {`package c5a; var _ = string("foo")`, `"foo"`, `string`, `"foo"`},
107                 {`package c5b; var _ = string("foo")`, `string("foo")`, `string`, `"foo"`},
108                 {`package c5c; type T string; var _ = T("foo")`, `T("foo")`, `c5c.T`, `"foo"`},
109                 {`package c5d; var _ = string(65)`, `65`, `untyped int`, `65`},
110                 {`package c5e; var _ = string('A')`, `'A'`, `untyped rune`, `65`},
111                 {`package c5f; type T string; var _ = T('A')`, `'A'`, `untyped rune`, `65`},
112
113                 {`package d0; var _ = []byte("foo")`, `"foo"`, `string`, `"foo"`},
114                 {`package d1; var _ = []byte(string("foo"))`, `"foo"`, `string`, `"foo"`},
115                 {`package d2; var _ = []byte(string("foo"))`, `string("foo")`, `string`, `"foo"`},
116                 {`package d3; type T []byte; var _ = T("foo")`, `"foo"`, `string`, `"foo"`},
117
118                 {`package e0; const _ = float32( 1e-200)`, `float32(1e-200)`, `float32`, `0`},
119                 {`package e1; const _ = float32(-1e-200)`, `float32(-1e-200)`, `float32`, `0`},
120                 {`package e2; const _ = float64( 1e-2000)`, `float64(1e-2000)`, `float64`, `0`},
121                 {`package e3; const _ = float64(-1e-2000)`, `float64(-1e-2000)`, `float64`, `0`},
122                 {`package e4; const _ = complex64( 1e-200)`, `complex64(1e-200)`, `complex64`, `(0 + 0i)`},
123                 {`package e5; const _ = complex64(-1e-200)`, `complex64(-1e-200)`, `complex64`, `(0 + 0i)`},
124                 {`package e6; const _ = complex128( 1e-2000)`, `complex128(1e-2000)`, `complex128`, `(0 + 0i)`},
125                 {`package e7; const _ = complex128(-1e-2000)`, `complex128(-1e-2000)`, `complex128`, `(0 + 0i)`},
126
127                 {`package f0 ; var _ float32 =  1e-200`, `1e-200`, `float32`, `0`},
128                 {`package f1 ; var _ float32 = -1e-200`, `-1e-200`, `float32`, `0`},
129                 {`package f2a; var _ float64 =  1e-2000`, `1e-2000`, `float64`, `0`},
130                 {`package f3a; var _ float64 = -1e-2000`, `-1e-2000`, `float64`, `0`},
131                 {`package f2b; var _         =  1e-2000`, `1e-2000`, `float64`, `0`},
132                 {`package f3b; var _         = -1e-2000`, `-1e-2000`, `float64`, `0`},
133                 {`package f4 ; var _ complex64  =  1e-200 `, `1e-200`, `complex64`, `(0 + 0i)`},
134                 {`package f5 ; var _ complex64  = -1e-200 `, `-1e-200`, `complex64`, `(0 + 0i)`},
135                 {`package f6a; var _ complex128 =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
136                 {`package f7a; var _ complex128 = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
137                 {`package f6b; var _            =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
138                 {`package f7b; var _            = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
139
140                 {`package g0; const (a = len([iota]int{}); b; c); const _ = c`, `c`, `int`, `2`}, // issue #22341
141                 {`package g1; var(j int32; s int; n = 1.0<<s == j)`, `1.0`, `int32`, `1`},        // issue #48422
142         }
143
144         for _, test := range tests {
145                 info := Info{
146                         Types: make(map[syntax.Expr]TypeAndValue),
147                 }
148                 name := mustTypecheck(t, "ValuesInfo", test.src, &info)
149
150                 // look for expression
151                 var expr syntax.Expr
152                 for e := range info.Types {
153                         if syntax.String(e) == test.expr {
154                                 expr = e
155                                 break
156                         }
157                 }
158                 if expr == nil {
159                         t.Errorf("package %s: no expression found for %s", name, test.expr)
160                         continue
161                 }
162                 tv := info.Types[expr]
163
164                 // check that type is correct
165                 if got := tv.Type.String(); got != test.typ {
166                         t.Errorf("package %s: got type %s; want %s", name, got, test.typ)
167                         continue
168                 }
169
170                 // if we have a constant, check that value is correct
171                 if tv.Value != nil {
172                         if got := tv.Value.ExactString(); got != test.val {
173                                 t.Errorf("package %s: got value %s; want %s", name, got, test.val)
174                         }
175                 } else {
176                         if test.val != "" {
177                                 t.Errorf("package %s: no constant found; want %s", name, test.val)
178                         }
179                 }
180         }
181 }
182
183 func TestTypesInfo(t *testing.T) {
184         var tests = []struct {
185                 src  string
186                 expr string // expression
187                 typ  string // value type
188         }{
189                 // single-valued expressions of untyped constants
190                 {`package b0; var x interface{} = false`, `false`, `bool`},
191                 {`package b1; var x interface{} = 0`, `0`, `int`},
192                 {`package b2; var x interface{} = 0.`, `0.`, `float64`},
193                 {`package b3; var x interface{} = 0i`, `0i`, `complex128`},
194                 {`package b4; var x interface{} = "foo"`, `"foo"`, `string`},
195
196                 // uses of nil
197                 {`package n0; var _ *int = nil`, `nil`, `*int`},
198                 {`package n1; var _ func() = nil`, `nil`, `func()`},
199                 {`package n2; var _ []byte = nil`, `nil`, `[]byte`},
200                 {`package n3; var _ map[int]int = nil`, `nil`, `map[int]int`},
201                 {`package n4; var _ chan int = nil`, `nil`, `chan int`},
202                 {`package n5a; var _ interface{} = (*int)(nil)`, `nil`, `*int`},
203                 {`package n5b; var _ interface{m()} = nil`, `nil`, `interface{m()}`},
204                 {`package n6; import "unsafe"; var _ unsafe.Pointer = nil`, `nil`, `unsafe.Pointer`},
205
206                 {`package n10; var (x *int; _ = x == nil)`, `nil`, `*int`},
207                 {`package n11; var (x func(); _ = x == nil)`, `nil`, `func()`},
208                 {`package n12; var (x []byte; _ = x == nil)`, `nil`, `[]byte`},
209                 {`package n13; var (x map[int]int; _ = x == nil)`, `nil`, `map[int]int`},
210                 {`package n14; var (x chan int; _ = x == nil)`, `nil`, `chan int`},
211                 {`package n15a; var (x interface{}; _ = x == (*int)(nil))`, `nil`, `*int`},
212                 {`package n15b; var (x interface{m()}; _ = x == nil)`, `nil`, `interface{m()}`},
213                 {`package n15; import "unsafe"; var (x unsafe.Pointer; _ = x == nil)`, `nil`, `unsafe.Pointer`},
214
215                 {`package n20; var _ = (*int)(nil)`, `nil`, `*int`},
216                 {`package n21; var _ = (func())(nil)`, `nil`, `func()`},
217                 {`package n22; var _ = ([]byte)(nil)`, `nil`, `[]byte`},
218                 {`package n23; var _ = (map[int]int)(nil)`, `nil`, `map[int]int`},
219                 {`package n24; var _ = (chan int)(nil)`, `nil`, `chan int`},
220                 {`package n25a; var _ = (interface{})((*int)(nil))`, `nil`, `*int`},
221                 {`package n25b; var _ = (interface{m()})(nil)`, `nil`, `interface{m()}`},
222                 {`package n26; import "unsafe"; var _ = unsafe.Pointer(nil)`, `nil`, `unsafe.Pointer`},
223
224                 {`package n30; func f(*int) { f(nil) }`, `nil`, `*int`},
225                 {`package n31; func f(func()) { f(nil) }`, `nil`, `func()`},
226                 {`package n32; func f([]byte) { f(nil) }`, `nil`, `[]byte`},
227                 {`package n33; func f(map[int]int) { f(nil) }`, `nil`, `map[int]int`},
228                 {`package n34; func f(chan int) { f(nil) }`, `nil`, `chan int`},
229                 {`package n35a; func f(interface{}) { f((*int)(nil)) }`, `nil`, `*int`},
230                 {`package n35b; func f(interface{m()}) { f(nil) }`, `nil`, `interface{m()}`},
231                 {`package n35; import "unsafe"; func f(unsafe.Pointer) { f(nil) }`, `nil`, `unsafe.Pointer`},
232
233                 // comma-ok expressions
234                 {`package p0; var x interface{}; var _, _ = x.(int)`,
235                         `x.(int)`,
236                         `(int, bool)`,
237                 },
238                 {`package p1; var x interface{}; func _() { _, _ = x.(int) }`,
239                         `x.(int)`,
240                         `(int, bool)`,
241                 },
242                 {`package p2a; type mybool bool; var m map[string]complex128; var b mybool; func _() { _, b = m["foo"] }`,
243                         `m["foo"]`,
244                         `(complex128, p2a.mybool)`,
245                 },
246                 {`package p2b; var m map[string]complex128; var b bool; func _() { _, b = m["foo"] }`,
247                         `m["foo"]`,
248                         `(complex128, bool)`,
249                 },
250                 {`package p3; var c chan string; var _, _ = <-c`,
251                         `<-c`,
252                         `(string, bool)`,
253                 },
254
255                 // issue 6796
256                 {`package issue6796_a; var x interface{}; var _, _ = (x.(int))`,
257                         `x.(int)`,
258                         `(int, bool)`,
259                 },
260                 {`package issue6796_b; var c chan string; var _, _ = (<-c)`,
261                         `(<-c)`,
262                         `(string, bool)`,
263                 },
264                 {`package issue6796_c; var c chan string; var _, _ = (<-c)`,
265                         `<-c`,
266                         `(string, bool)`,
267                 },
268                 {`package issue6796_d; var c chan string; var _, _ = ((<-c))`,
269                         `(<-c)`,
270                         `(string, bool)`,
271                 },
272                 {`package issue6796_e; func f(c chan string) { _, _ = ((<-c)) }`,
273                         `(<-c)`,
274                         `(string, bool)`,
275                 },
276
277                 // issue 7060
278                 {`package issue7060_a; var ( m map[int]string; x, ok = m[0] )`,
279                         `m[0]`,
280                         `(string, bool)`,
281                 },
282                 {`package issue7060_b; var ( m map[int]string; x, ok interface{} = m[0] )`,
283                         `m[0]`,
284                         `(string, bool)`,
285                 },
286                 {`package issue7060_c; func f(x interface{}, ok bool, m map[int]string) { x, ok = m[0] }`,
287                         `m[0]`,
288                         `(string, bool)`,
289                 },
290                 {`package issue7060_d; var ( ch chan string; x, ok = <-ch )`,
291                         `<-ch`,
292                         `(string, bool)`,
293                 },
294                 {`package issue7060_e; var ( ch chan string; x, ok interface{} = <-ch )`,
295                         `<-ch`,
296                         `(string, bool)`,
297                 },
298                 {`package issue7060_f; func f(x interface{}, ok bool, ch chan string) { x, ok = <-ch }`,
299                         `<-ch`,
300                         `(string, bool)`,
301                 },
302
303                 // issue 28277
304                 {`package issue28277_a; func f(...int)`,
305                         `...int`,
306                         `[]int`,
307                 },
308                 {`package issue28277_b; func f(a, b int, c ...[]struct{})`,
309                         `...[]struct{}`,
310                         `[][]struct{}`,
311                 },
312
313                 // tests for broken code that doesn't parse or type-check
314                 {brokenPkg + `x0; func _() { var x struct {f string}; x.f := 0 }`, `x.f`, `string`},
315                 {brokenPkg + `x1; func _() { var z string; type x struct {f string}; y := &x{q: z}}`, `z`, `string`},
316                 {brokenPkg + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a, f: b,}}`, `b`, `string`},
317                 {brokenPkg + `x3; var x = panic("");`, `panic`, `func(interface{})`},
318                 {`package x4; func _() { panic("") }`, `panic`, `func(interface{})`},
319                 {brokenPkg + `x5; func _() { var x map[string][...]int; x = map[string][...]int{"": {1,2,3}} }`, `x`, `map[string]invalid type`},
320
321                 // parameterized functions
322                 {`package p0; func f[T any](T) {}; var _ = f[int]`, `f`, `func[T any](T)`},
323                 {`package p1; func f[T any](T) {}; var _ = f[int]`, `f[int]`, `func(int)`},
324                 {`package p2; func f[T any](T) {}; func _() { f(42) }`, `f`, `func(int)`},
325                 {`package p3; func f[T any](T) {}; func _() { f[int](42) }`, `f[int]`, `func(int)`},
326                 {`package p4; func f[T any](T) {}; func _() { f[int](42) }`, `f`, `func[T any](T)`},
327                 {`package p5; func f[T any](T) {}; func _() { f(42) }`, `f(42)`, `()`},
328
329                 // type parameters
330                 {`package t0; type t[] int; var _ t`, `t`, `t0.t`}, // t[] is a syntax error that is ignored in this test in favor of t
331                 {`package t1; type t[P any] int; var _ t[int]`, `t`, `t1.t[P any]`},
332                 {`package t2; type t[P interface{}] int; var _ t[int]`, `t`, `t2.t[P interface{}]`},
333                 {`package t3; type t[P, Q interface{}] int; var _ t[int, int]`, `t`, `t3.t[P, Q interface{}]`},
334                 {brokenPkg + `t4; type t[P, Q interface{ m() }] int; var _ t[int, int]`, `t`, `broken_t4.t[P, Q interface{m()}]`},
335
336                 // instantiated types must be sanitized
337                 {`package g0; type t[P any] int; var x struct{ f t[int] }; var _ = x.f`, `x.f`, `g0.t[int]`},
338
339                 // issue 45096
340                 {`package issue45096; func _[T interface{ ~int8 | ~int16 | ~int32 }](x T) { _ = x < 0 }`, `0`, `T`},
341
342                 // issue 47895
343                 {`package p; import "unsafe"; type S struct { f int }; var s S; var _ = unsafe.Offsetof(s.f)`, `s.f`, `int`},
344
345                 // issue 50093
346                 {`package u0a; func _[_ interface{int}]() {}`, `int`, `int`},
347                 {`package u1a; func _[_ interface{~int}]() {}`, `~int`, `~int`},
348                 {`package u2a; func _[_ interface{int|string}]() {}`, `int | string`, `int|string`},
349                 {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `int | string | ~bool`, `int|string|~bool`},
350                 {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `int | string`, `int|string`},
351                 {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `~bool`, `~bool`},
352                 {`package u3a; func _[_ interface{int|string|~float64|~bool}]() {}`, `int | string | ~float64`, `int|string|~float64`},
353
354                 {`package u0b; func _[_ int]() {}`, `int`, `int`},
355                 {`package u1b; func _[_ ~int]() {}`, `~int`, `~int`},
356                 {`package u2b; func _[_ int|string]() {}`, `int | string`, `int|string`},
357                 {`package u3b; func _[_ int|string|~bool]() {}`, `int | string | ~bool`, `int|string|~bool`},
358                 {`package u3b; func _[_ int|string|~bool]() {}`, `int | string`, `int|string`},
359                 {`package u3b; func _[_ int|string|~bool]() {}`, `~bool`, `~bool`},
360                 {`package u3b; func _[_ int|string|~float64|~bool]() {}`, `int | string | ~float64`, `int|string|~float64`},
361
362                 {`package u0c; type _ interface{int}`, `int`, `int`},
363                 {`package u1c; type _ interface{~int}`, `~int`, `~int`},
364                 {`package u2c; type _ interface{int|string}`, `int | string`, `int|string`},
365                 {`package u3c; type _ interface{int|string|~bool}`, `int | string | ~bool`, `int|string|~bool`},
366                 {`package u3c; type _ interface{int|string|~bool}`, `int | string`, `int|string`},
367                 {`package u3c; type _ interface{int|string|~bool}`, `~bool`, `~bool`},
368                 {`package u3c; type _ interface{int|string|~float64|~bool}`, `int | string | ~float64`, `int|string|~float64`},
369         }
370
371         for _, test := range tests {
372                 info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
373                 var name string
374                 if strings.HasPrefix(test.src, brokenPkg) {
375                         var err error
376                         name, err = mayTypecheck(t, "TypesInfo", test.src, &info)
377                         if err == nil {
378                                 t.Errorf("package %s: expected to fail but passed", name)
379                                 continue
380                         }
381                 } else {
382                         name = mustTypecheck(t, "TypesInfo", test.src, &info)
383                 }
384
385                 // look for expression type
386                 var typ Type
387                 for e, tv := range info.Types {
388                         if syntax.String(e) == test.expr {
389                                 typ = tv.Type
390                                 break
391                         }
392                 }
393                 if typ == nil {
394                         t.Errorf("package %s: no type found for %s", name, test.expr)
395                         continue
396                 }
397
398                 // check that type is correct
399                 if got := typ.String(); got != test.typ {
400                         t.Errorf("package %s: got %s; want %s", name, got, test.typ)
401                 }
402         }
403 }
404
405 func TestInstanceInfo(t *testing.T) {
406         var tests = []struct {
407                 src   string
408                 name  string
409                 targs []string
410                 typ   string
411         }{
412                 {`package p0; func f[T any](T) {}; func _() { f(42) }`,
413                         `f`,
414                         []string{`int`},
415                         `func(int)`,
416                 },
417                 {`package p1; func f[T any](T) T { panic(0) }; func _() { f('@') }`,
418                         `f`,
419                         []string{`rune`},
420                         `func(rune) rune`,
421                 },
422                 {`package p2; func f[T any](...T) T { panic(0) }; func _() { f(0i) }`,
423                         `f`,
424                         []string{`complex128`},
425                         `func(...complex128) complex128`,
426                 },
427                 {`package p3; func f[A, B, C any](A, *B, []C) {}; func _() { f(1.2, new(string), []byte{}) }`,
428                         `f`,
429                         []string{`float64`, `string`, `byte`},
430                         `func(float64, *string, []byte)`,
431                 },
432                 {`package p4; func f[A, B any](A, *B, ...[]B) {}; func _() { f(1.2, new(byte)) }`,
433                         `f`,
434                         []string{`float64`, `byte`},
435                         `func(float64, *byte, ...[]byte)`,
436                 },
437
438                 // we don't know how to translate these but we can type-check them
439                 {`package q0; type T struct{}; func (T) m[P any](P) {}; func _(x T) { x.m(42) }`,
440                         `m`,
441                         []string{`int`},
442                         `func(int)`,
443                 },
444                 {`package q1; type T struct{}; func (T) m[P any](P) P { panic(0) }; func _(x T) { x.m(42) }`,
445                         `m`,
446                         []string{`int`},
447                         `func(int) int`,
448                 },
449                 {`package q2; type T struct{}; func (T) m[P any](...P) P { panic(0) }; func _(x T) { x.m(42) }`,
450                         `m`,
451                         []string{`int`},
452                         `func(...int) int`,
453                 },
454                 {`package q3; type T struct{}; func (T) m[A, B, C any](A, *B, []C) {}; func _(x T) { x.m(1.2, new(string), []byte{}) }`,
455                         `m`,
456                         []string{`float64`, `string`, `byte`},
457                         `func(float64, *string, []byte)`,
458                 },
459                 {`package q4; type T struct{}; func (T) m[A, B any](A, *B, ...[]B) {}; func _(x T) { x.m(1.2, new(byte)) }`,
460                         `m`,
461                         []string{`float64`, `byte`},
462                         `func(float64, *byte, ...[]byte)`,
463                 },
464
465                 {`package r0; type T[P any] struct{}; func (_ T[P]) m[Q any](Q) {}; func _[P any](x T[P]) { x.m(42) }`,
466                         `m`,
467                         []string{`int`},
468                         `func(int)`,
469                 },
470                 // TODO(gri) record method type parameters in syntax.FuncType so we can check this
471                 // {`package r1; type T interface{ m[P any](P) }; func _(x T) { x.m(4.2) }`,
472                 //      `x.m`,
473                 //      []string{`float64`},
474                 //      `func(float64)`,
475                 // },
476
477                 {`package s1; func f[T any, P interface{~*T}](x T) {}; func _(x string) { f(x) }`,
478                         `f`,
479                         []string{`string`, `*string`},
480                         `func(x string)`,
481                 },
482                 {`package s2; func f[T any, P interface{~*T}](x []T) {}; func _(x []int) { f(x) }`,
483                         `f`,
484                         []string{`int`, `*int`},
485                         `func(x []int)`,
486                 },
487                 {`package s3; type C[T any] interface{~chan<- T}; func f[T any, P C[T]](x []T) {}; func _(x []int) { f(x) }`,
488                         `f`,
489                         []string{`int`, `chan<- int`},
490                         `func(x []int)`,
491                 },
492                 {`package s4; type C[T any] interface{~chan<- T}; func f[T any, P C[T], Q C[[]*P]](x []T) {}; func _(x []int) { f(x) }`,
493                         `f`,
494                         []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
495                         `func(x []int)`,
496                 },
497
498                 {`package t1; func f[T any, P interface{~*T}]() T { panic(0) }; func _() { _ = f[string] }`,
499                         `f`,
500                         []string{`string`, `*string`},
501                         `func() string`,
502                 },
503                 {`package t2; func f[T any, P interface{~*T}]() T { panic(0) }; func _() { _ = (f[string]) }`,
504                         `f`,
505                         []string{`string`, `*string`},
506                         `func() string`,
507                 },
508                 {`package t3; type C[T any] interface{~chan<- T}; func f[T any, P C[T], Q C[[]*P]]() []T { return nil }; func _() { _ = f[int] }`,
509                         `f`,
510                         []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
511                         `func() []int`,
512                 },
513                 {`package t4; type C[T any] interface{~chan<- T}; func f[T any, P C[T], Q C[[]*P]]() []T { return nil }; func _() { _ = f[int] }`,
514                         `f`,
515                         []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
516                         `func() []int`,
517                 },
518                 {`package i0; import lib "generic_lib"; func _() { lib.F(42) }`,
519                         `F`,
520                         []string{`int`},
521                         `func(int)`,
522                 },
523                 {`package type0; type T[P interface{~int}] struct{ x P }; var _ T[int]`,
524                         `T`,
525                         []string{`int`},
526                         `struct{x int}`,
527                 },
528                 {`package type1; type T[P interface{~int}] struct{ x P }; var _ (T[int])`,
529                         `T`,
530                         []string{`int`},
531                         `struct{x int}`,
532                 },
533                 {`package type2; type T[P interface{~int}] struct{ x P }; var _ T[(int)]`,
534                         `T`,
535                         []string{`int`},
536                         `struct{x int}`,
537                 },
538                 {`package type3; type T[P1 interface{~[]P2}, P2 any] struct{ x P1; y P2 }; var _ T[[]int, int]`,
539                         `T`,
540                         []string{`[]int`, `int`},
541                         `struct{x []int; y int}`,
542                 },
543                 {`package type4; import lib "generic_lib"; var _ lib.T[int]`,
544                         `T`,
545                         []string{`int`},
546                         `[]int`,
547                 },
548         }
549
550         for _, test := range tests {
551                 const lib = `package generic_lib
552
553 func F[P any](P) {}
554
555 type T[P any] []P
556 `
557
558                 imports := make(testImporter)
559                 conf := Config{Importer: imports}
560                 instances := make(map[*syntax.Name]Instance)
561                 uses := make(map[*syntax.Name]Object)
562                 makePkg := func(src string) *Package {
563                         f, err := parseSrc("p.go", src)
564                         if err != nil {
565                                 t.Fatal(err)
566                         }
567                         pkg, err := conf.Check("", []*syntax.File{f}, &Info{Instances: instances, Uses: uses})
568                         if err != nil {
569                                 t.Fatal(err)
570                         }
571                         imports[pkg.Name()] = pkg
572                         return pkg
573                 }
574                 makePkg(lib)
575                 pkg := makePkg(test.src)
576
577                 // look for instance information
578                 var targs []Type
579                 var typ Type
580                 for ident, inst := range instances {
581                         if syntax.String(ident) == test.name {
582                                 for i := 0; i < inst.TypeArgs.Len(); i++ {
583                                         targs = append(targs, inst.TypeArgs.At(i))
584                                 }
585                                 typ = inst.Type
586
587                                 // Check that we can find the corresponding parameterized type.
588                                 ptype := uses[ident].Type()
589                                 lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
590                                 if lister == nil || lister.TypeParams().Len() == 0 {
591                                         t.Errorf("package %s: info.Types[%v] = %v, want parameterized type", pkg.Name(), ident, ptype)
592                                         continue
593                                 }
594
595                                 // Verify the invariant that re-instantiating the generic type with
596                                 // TypeArgs results in an equivalent type.
597                                 inst2, err := Instantiate(nil, ptype, targs, true)
598                                 if err != nil {
599                                         t.Errorf("Instantiate(%v, %v) failed: %v", ptype, targs, err)
600                                 }
601                                 if !Identical(inst.Type, inst2) {
602                                         t.Errorf("%v and %v are not identical", inst.Type, inst2)
603                                 }
604                                 break
605                         }
606                 }
607                 if targs == nil {
608                         t.Errorf("package %s: no instance information found for %s", pkg.Name(), test.name)
609                         continue
610                 }
611
612                 // check that type arguments are correct
613                 if len(targs) != len(test.targs) {
614                         t.Errorf("package %s: got %d type arguments; want %d", pkg.Name(), len(targs), len(test.targs))
615                         continue
616                 }
617                 for i, targ := range targs {
618                         if got := targ.String(); got != test.targs[i] {
619                                 t.Errorf("package %s, %d. type argument: got %s; want %s", pkg.Name(), i, got, test.targs[i])
620                                 continue
621                         }
622                 }
623
624                 // check that the types match
625                 if got := typ.Underlying().String(); got != test.typ {
626                         t.Errorf("package %s: got %s; want %s", pkg.Name(), got, test.typ)
627                 }
628         }
629 }
630
631 func TestDefsInfo(t *testing.T) {
632         var tests = []struct {
633                 src  string
634                 obj  string
635                 want string
636         }{
637                 {`package p0; const x = 42`, `x`, `const p0.x untyped int`},
638                 {`package p1; const x int = 42`, `x`, `const p1.x int`},
639                 {`package p2; var x int`, `x`, `var p2.x int`},
640                 {`package p3; type x int`, `x`, `type p3.x int`},
641                 {`package p4; func f()`, `f`, `func p4.f()`},
642                 {`package p5; func f() int { x, _ := 1, 2; return x }`, `_`, `var _ int`},
643
644                 // Tests using generics.
645                 {`package g0; type x[T any] int`, `x`, `type g0.x[T any] int`},
646                 {`package g1; func f[T any]() {}`, `f`, `func g1.f[T any]()`},
647                 {`package g2; type x[T any] int; func (*x[_]) m() {}`, `m`, `func (*g2.x[_]).m()`},
648         }
649
650         for _, test := range tests {
651                 info := Info{
652                         Defs: make(map[*syntax.Name]Object),
653                 }
654                 name := mustTypecheck(t, "DefsInfo", test.src, &info)
655
656                 // find object
657                 var def Object
658                 for id, obj := range info.Defs {
659                         if id.Value == test.obj {
660                                 def = obj
661                                 break
662                         }
663                 }
664                 if def == nil {
665                         t.Errorf("package %s: %s not found", name, test.obj)
666                         continue
667                 }
668
669                 if got := def.String(); got != test.want {
670                         t.Errorf("package %s: got %s; want %s", name, got, test.want)
671                 }
672         }
673 }
674
675 func TestUsesInfo(t *testing.T) {
676         var tests = []struct {
677                 src  string
678                 obj  string
679                 want string
680         }{
681                 {`package p0; func _() { _ = x }; const x = 42`, `x`, `const p0.x untyped int`},
682                 {`package p1; func _() { _ = x }; const x int = 42`, `x`, `const p1.x int`},
683                 {`package p2; func _() { _ = x }; var x int`, `x`, `var p2.x int`},
684                 {`package p3; func _() { type _ x }; type x int`, `x`, `type p3.x int`},
685                 {`package p4; func _() { _ = f }; func f()`, `f`, `func p4.f()`},
686
687                 // Tests using generics.
688                 {`package g0; func _[T any]() { _ = x }; const x = 42`, `x`, `const g0.x untyped int`},
689                 {`package g1; func _[T any](x T) { }`, `T`, `type parameter T any`},
690                 {`package g2; type N[A any] int; var _ N[int]`, `N`, `type g2.N[A any] int`},
691                 {`package g3; type N[A any] int; func (N[_]) m() {}`, `N`, `type g3.N[A any] int`},
692
693                 // Uses of fields are instantiated.
694                 {`package s1; type N[A any] struct{ a A }; var f = N[int]{}.a`, `a`, `field a int`},
695                 {`package s1; type N[A any] struct{ a A }; func (r N[B]) m(b B) { r.a = b }`, `a`, `field a B`},
696
697                 // Uses of methods are uses of the instantiated method.
698                 {`package m0; type N[A any] int; func (r N[B]) m() { r.n() }; func (N[C]) n() {}`, `n`, `func (m0.N[B]).n()`},
699                 {`package m1; type N[A any] int; func (r N[B]) m() { }; var f = N[int].m`, `m`, `func (m1.N[int]).m()`},
700                 {`package m2; func _[A any](v interface{ m() A }) { v.m() }`, `m`, `func (interface).m() A`},
701                 {`package m3; func f[A any]() interface{ m() A } { return nil }; var _ = f[int]().m()`, `m`, `func (interface).m() int`},
702                 {`package m4; type T[A any] func() interface{ m() A }; var x T[int]; var y = x().m`, `m`, `func (interface).m() int`},
703                 {`package m5; type T[A any] interface{ m() A }; func _[B any](t T[B]) { t.m() }`, `m`, `func (m5.T[B]).m() B`},
704                 {`package m6; type T[A any] interface{ m() }; func _[B any](t T[B]) { t.m() }`, `m`, `func (m6.T[B]).m()`},
705                 {`package m7; type T[A any] interface{ m() A }; func _(t T[int]) { t.m() }`, `m`, `func (m7.T[int]).m() int`},
706                 {`package m8; type T[A any] interface{ m() }; func _(t T[int]) { t.m() }`, `m`, `func (m8.T[int]).m()`},
707                 {`package m9; type T[A any] interface{ m() }; func _(t T[int]) { _ = t.m }`, `m`, `func (m9.T[int]).m()`},
708                 {
709                         `package m10; type E[A any] interface{ m() }; type T[B any] interface{ E[B]; n() }; func _(t T[int]) { t.m() }`,
710                         `m`,
711                         `func (m10.E[int]).m()`,
712                 },
713         }
714
715         for _, test := range tests {
716                 info := Info{
717                         Uses: make(map[*syntax.Name]Object),
718                 }
719                 name := mustTypecheck(t, "UsesInfo", test.src, &info)
720
721                 // find object
722                 var use Object
723                 for id, obj := range info.Uses {
724                         if id.Value == test.obj {
725                                 if use != nil {
726                                         panic(fmt.Sprintf("multiple uses of %q", id.Value))
727                                 }
728                                 use = obj
729                         }
730                 }
731                 if use == nil {
732                         t.Errorf("package %s: %s not found", name, test.obj)
733                         continue
734                 }
735
736                 if got := use.String(); got != test.want {
737                         t.Errorf("package %s: got %s; want %s", name, got, test.want)
738                 }
739         }
740 }
741
742 func TestGenericMethodInfo(t *testing.T) {
743         src := `package p
744
745 type N[A any] int
746
747 func (r N[B]) m() { r.m(); r.n() }
748
749 func (r *N[C]) n() {  }
750 `
751         f, err := parseSrc("p.go", src)
752         if err != nil {
753                 t.Fatal(err)
754         }
755         info := Info{
756                 Defs:       make(map[*syntax.Name]Object),
757                 Uses:       make(map[*syntax.Name]Object),
758                 Selections: make(map[*syntax.SelectorExpr]*Selection),
759         }
760         var conf Config
761         pkg, err := conf.Check("p", []*syntax.File{f}, &info)
762         if err != nil {
763                 t.Fatal(err)
764         }
765
766         N := pkg.Scope().Lookup("N").Type().(*Named)
767
768         // Find the generic methods stored on N.
769         gm, gn := N.Method(0), N.Method(1)
770         if gm.Name() == "n" {
771                 gm, gn = gn, gm
772         }
773
774         // Collect objects from info.
775         var dm, dn *Func   // the declared methods
776         var dmm, dmn *Func // the methods used in the body of m
777         for _, decl := range f.DeclList {
778                 fdecl, ok := decl.(*syntax.FuncDecl)
779                 if !ok {
780                         continue
781                 }
782                 def := info.Defs[fdecl.Name].(*Func)
783                 switch fdecl.Name.Value {
784                 case "m":
785                         dm = def
786                         syntax.Inspect(fdecl.Body, func(n syntax.Node) bool {
787                                 if call, ok := n.(*syntax.CallExpr); ok {
788                                         sel := call.Fun.(*syntax.SelectorExpr)
789                                         use := info.Uses[sel.Sel].(*Func)
790                                         selection := info.Selections[sel]
791                                         if selection.Kind() != MethodVal {
792                                                 t.Errorf("Selection kind = %v, want %v", selection.Kind(), MethodVal)
793                                         }
794                                         if selection.Obj() != use {
795                                                 t.Errorf("info.Selections contains %v, want %v", selection.Obj(), use)
796                                         }
797                                         switch sel.Sel.Value {
798                                         case "m":
799                                                 dmm = use
800                                         case "n":
801                                                 dmn = use
802                                         }
803                                 }
804                                 return true
805                         })
806                 case "n":
807                         dn = def
808                 }
809         }
810
811         if gm != dm {
812                 t.Errorf(`N.Method(...) returns %v for "m", but Info.Defs has %v`, gm, dm)
813         }
814         if gn != dn {
815                 t.Errorf(`N.Method(...) returns %v for "m", but Info.Defs has %v`, gm, dm)
816         }
817         if dmm != dm {
818                 t.Errorf(`Inside "m", r.m uses %v, want the defined func %v`, dmm, dm)
819         }
820         if dmn == dn {
821                 t.Errorf(`Inside "m", r.n uses %v, want a func distinct from %v`, dmm, dm)
822         }
823 }
824
825 func TestImplicitsInfo(t *testing.T) {
826         testenv.MustHaveGoBuild(t)
827
828         var tests = []struct {
829                 src  string
830                 want string
831         }{
832                 {`package p2; import . "fmt"; var _ = Println`, ""},           // no Implicits entry
833                 {`package p0; import local "fmt"; var _ = local.Println`, ""}, // no Implicits entry
834                 {`package p1; import "fmt"; var _ = fmt.Println`, "importSpec: package fmt"},
835
836                 {`package p3; func f(x interface{}) { switch x.(type) { case int: } }`, ""}, // no Implicits entry
837                 {`package p4; func f(x interface{}) { switch t := x.(type) { case int: _ = t } }`, "caseClause: var t int"},
838                 {`package p5; func f(x interface{}) { switch t := x.(type) { case int, uint: _ = t } }`, "caseClause: var t interface{}"},
839                 {`package p6; func f(x interface{}) { switch t := x.(type) { default: _ = t } }`, "caseClause: var t interface{}"},
840
841                 {`package p7; func f(x int) {}`, ""}, // no Implicits entry
842                 {`package p8; func f(int) {}`, "field: var  int"},
843                 {`package p9; func f() (complex64) { return 0 }`, "field: var  complex64"},
844                 {`package p10; type T struct{}; func (*T) f() {}`, "field: var  *p10.T"},
845
846                 // Tests using generics.
847                 {`package f0; func f[T any](x int) {}`, ""}, // no Implicits entry
848                 {`package f1; func f[T any](int) {}`, "field: var  int"},
849                 {`package f2; func f[T any](T) {}`, "field: var  T"},
850                 {`package f3; func f[T any]() (complex64) { return 0 }`, "field: var  complex64"},
851                 {`package f4; func f[T any](t T) (T) { return t }`, "field: var  T"},
852                 {`package t0; type T[A any] struct{}; func (*T[_]) f() {}`, "field: var  *t0.T[_]"},
853                 {`package t1; type T[A any] struct{}; func _(x interface{}) { switch t := x.(type) { case T[int]: _ = t } }`, "caseClause: var t t1.T[int]"},
854                 {`package t2; type T[A any] struct{}; func _[P any](x interface{}) { switch t := x.(type) { case T[P]: _ = t } }`, "caseClause: var t t2.T[P]"},
855                 {`package t3; func _[P any](x interface{}) { switch t := x.(type) { case P: _ = t } }`, "caseClause: var t P"},
856         }
857
858         for _, test := range tests {
859                 info := Info{
860                         Implicits: make(map[syntax.Node]Object),
861                 }
862                 name := mustTypecheck(t, "ImplicitsInfo", test.src, &info)
863
864                 // the test cases expect at most one Implicits entry
865                 if len(info.Implicits) > 1 {
866                         t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
867                         continue
868                 }
869
870                 // extract Implicits entry, if any
871                 var got string
872                 for n, obj := range info.Implicits {
873                         switch x := n.(type) {
874                         case *syntax.ImportDecl:
875                                 got = "importSpec"
876                         case *syntax.CaseClause:
877                                 got = "caseClause"
878                         case *syntax.Field:
879                                 got = "field"
880                         default:
881                                 t.Fatalf("package %s: unexpected %T", name, x)
882                         }
883                         got += ": " + obj.String()
884                 }
885
886                 // verify entry
887                 if got != test.want {
888                         t.Errorf("package %s: got %q; want %q", name, got, test.want)
889                 }
890         }
891 }
892
893 func predString(tv TypeAndValue) string {
894         var buf bytes.Buffer
895         pred := func(b bool, s string) {
896                 if b {
897                         if buf.Len() > 0 {
898                                 buf.WriteString(", ")
899                         }
900                         buf.WriteString(s)
901                 }
902         }
903
904         pred(tv.IsVoid(), "void")
905         pred(tv.IsType(), "type")
906         pred(tv.IsBuiltin(), "builtin")
907         pred(tv.IsValue() && tv.Value != nil, "const")
908         pred(tv.IsValue() && tv.Value == nil, "value")
909         pred(tv.IsNil(), "nil")
910         pred(tv.Addressable(), "addressable")
911         pred(tv.Assignable(), "assignable")
912         pred(tv.HasOk(), "hasOk")
913
914         if buf.Len() == 0 {
915                 return "invalid"
916         }
917         return buf.String()
918 }
919
920 func TestPredicatesInfo(t *testing.T) {
921         testenv.MustHaveGoBuild(t)
922
923         var tests = []struct {
924                 src  string
925                 expr string
926                 pred string
927         }{
928                 // void
929                 {`package n0; func f() { f() }`, `f()`, `void`},
930
931                 // types
932                 {`package t0; type _ int`, `int`, `type`},
933                 {`package t1; type _ []int`, `[]int`, `type`},
934                 {`package t2; type _ func()`, `func()`, `type`},
935                 {`package t3; type _ func(int)`, `int`, `type`},
936                 {`package t3; type _ func(...int)`, `...int`, `type`},
937
938                 // built-ins
939                 {`package b0; var _ = len("")`, `len`, `builtin`},
940                 {`package b1; var _ = (len)("")`, `(len)`, `builtin`},
941
942                 // constants
943                 {`package c0; var _ = 42`, `42`, `const`},
944                 {`package c1; var _ = "foo" + "bar"`, `"foo" + "bar"`, `const`},
945                 {`package c2; const (i = 1i; _ = i)`, `i`, `const`},
946
947                 // values
948                 {`package v0; var (a, b int; _ = a + b)`, `a + b`, `value`},
949                 {`package v1; var _ = &[]int{1}`, `[]int{…}`, `value`},
950                 {`package v2; var _ = func(){}`, `func() {}`, `value`},
951                 {`package v4; func f() { _ = f }`, `f`, `value`},
952                 {`package v3; var _ *int = nil`, `nil`, `value, nil`},
953                 {`package v3; var _ *int = (nil)`, `(nil)`, `value, nil`},
954
955                 // addressable (and thus assignable) operands
956                 {`package a0; var (x int; _ = x)`, `x`, `value, addressable, assignable`},
957                 {`package a1; var (p *int; _ = *p)`, `*p`, `value, addressable, assignable`},
958                 {`package a2; var (s []int; _ = s[0])`, `s[0]`, `value, addressable, assignable`},
959                 {`package a3; var (s struct{f int}; _ = s.f)`, `s.f`, `value, addressable, assignable`},
960                 {`package a4; var (a [10]int; _ = a[0])`, `a[0]`, `value, addressable, assignable`},
961                 {`package a5; func _(x int) { _ = x }`, `x`, `value, addressable, assignable`},
962                 {`package a6; func _()(x int) { _ = x; return }`, `x`, `value, addressable, assignable`},
963                 {`package a7; type T int; func (x T) _() { _ = x }`, `x`, `value, addressable, assignable`},
964                 // composite literals are not addressable
965
966                 // assignable but not addressable values
967                 {`package s0; var (m map[int]int; _ = m[0])`, `m[0]`, `value, assignable, hasOk`},
968                 {`package s1; var (m map[int]int; _, _ = m[0])`, `m[0]`, `value, assignable, hasOk`},
969
970                 // hasOk expressions
971                 {`package k0; var (ch chan int; _ = <-ch)`, `<-ch`, `value, hasOk`},
972                 {`package k1; var (ch chan int; _, _ = <-ch)`, `<-ch`, `value, hasOk`},
973
974                 // missing entries
975                 // - package names are collected in the Uses map
976                 // - identifiers being declared are collected in the Defs map
977                 {`package m0; import "os"; func _() { _ = os.Stdout }`, `os`, `<missing>`},
978                 {`package m1; import p "os"; func _() { _ = p.Stdout }`, `p`, `<missing>`},
979                 {`package m2; const c = 0`, `c`, `<missing>`},
980                 {`package m3; type T int`, `T`, `<missing>`},
981                 {`package m4; var v int`, `v`, `<missing>`},
982                 {`package m5; func f() {}`, `f`, `<missing>`},
983                 {`package m6; func _(x int) {}`, `x`, `<missing>`},
984                 {`package m6; func _()(x int) { return }`, `x`, `<missing>`},
985                 {`package m6; type T int; func (x T) _() {}`, `x`, `<missing>`},
986         }
987
988         for _, test := range tests {
989                 info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
990                 name := mustTypecheck(t, "PredicatesInfo", test.src, &info)
991
992                 // look for expression predicates
993                 got := "<missing>"
994                 for e, tv := range info.Types {
995                         //println(name, syntax.String(e))
996                         if syntax.String(e) == test.expr {
997                                 got = predString(tv)
998                                 break
999                         }
1000                 }
1001
1002                 if got != test.pred {
1003                         t.Errorf("package %s: got %s; want %s", name, got, test.pred)
1004                 }
1005         }
1006 }
1007
1008 func TestScopesInfo(t *testing.T) {
1009         testenv.MustHaveGoBuild(t)
1010
1011         var tests = []struct {
1012                 src    string
1013                 scopes []string // list of scope descriptors of the form kind:varlist
1014         }{
1015                 {`package p0`, []string{
1016                         "file:",
1017                 }},
1018                 {`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
1019                         "file:fmt m",
1020                 }},
1021                 {`package p2; func _() {}`, []string{
1022                         "file:", "func:",
1023                 }},
1024                 {`package p3; func _(x, y int) {}`, []string{
1025                         "file:", "func:x y",
1026                 }},
1027                 {`package p4; func _(x, y int) { x, z := 1, 2; _ = z }`, []string{
1028                         "file:", "func:x y z", // redeclaration of x
1029                 }},
1030                 {`package p5; func _(x, y int) (u, _ int) { return }`, []string{
1031                         "file:", "func:u x y",
1032                 }},
1033                 {`package p6; func _() { { var x int; _ = x } }`, []string{
1034                         "file:", "func:", "block:x",
1035                 }},
1036                 {`package p7; func _() { if true {} }`, []string{
1037                         "file:", "func:", "if:", "block:",
1038                 }},
1039                 {`package p8; func _() { if x := 0; x < 0 { y := x; _ = y } }`, []string{
1040                         "file:", "func:", "if:x", "block:y",
1041                 }},
1042                 {`package p9; func _() { switch x := 0; x {} }`, []string{
1043                         "file:", "func:", "switch:x",
1044                 }},
1045                 {`package p10; func _() { switch x := 0; x { case 1: y := x; _ = y; default: }}`, []string{
1046                         "file:", "func:", "switch:x", "case:y", "case:",
1047                 }},
1048                 {`package p11; func _(t interface{}) { switch t.(type) {} }`, []string{
1049                         "file:", "func:t", "switch:",
1050                 }},
1051                 {`package p12; func _(t interface{}) { switch t := t; t.(type) {} }`, []string{
1052                         "file:", "func:t", "switch:t",
1053                 }},
1054                 {`package p13; func _(t interface{}) { switch x := t.(type) { case int: _ = x } }`, []string{
1055                         "file:", "func:t", "switch:", "case:x", // x implicitly declared
1056                 }},
1057                 {`package p14; func _() { select{} }`, []string{
1058                         "file:", "func:",
1059                 }},
1060                 {`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
1061                         "file:", "func:c", "comm:",
1062                 }},
1063                 {`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
1064                         "file:", "func:c", "comm:i x",
1065                 }},
1066                 {`package p17; func _() { for{} }`, []string{
1067                         "file:", "func:", "for:", "block:",
1068                 }},
1069                 {`package p18; func _(n int) { for i := 0; i < n; i++ { _ = i } }`, []string{
1070                         "file:", "func:n", "for:i", "block:",
1071                 }},
1072                 {`package p19; func _(a []int) { for i := range a { _ = i} }`, []string{
1073                         "file:", "func:a", "for:i", "block:",
1074                 }},
1075                 {`package p20; var s int; func _(a []int) { for i, x := range a { s += x; _ = i } }`, []string{
1076                         "file:", "func:a", "for:i x", "block:",
1077                 }},
1078         }
1079
1080         for _, test := range tests {
1081                 info := Info{Scopes: make(map[syntax.Node]*Scope)}
1082                 name := mustTypecheck(t, "ScopesInfo", test.src, &info)
1083
1084                 // number of scopes must match
1085                 if len(info.Scopes) != len(test.scopes) {
1086                         t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
1087                 }
1088
1089                 // scope descriptions must match
1090                 for node, scope := range info.Scopes {
1091                         var kind string
1092                         switch node.(type) {
1093                         case *syntax.File:
1094                                 kind = "file"
1095                         case *syntax.FuncType:
1096                                 kind = "func"
1097                         case *syntax.BlockStmt:
1098                                 kind = "block"
1099                         case *syntax.IfStmt:
1100                                 kind = "if"
1101                         case *syntax.SwitchStmt:
1102                                 kind = "switch"
1103                         case *syntax.SelectStmt:
1104                                 kind = "select"
1105                         case *syntax.CaseClause:
1106                                 kind = "case"
1107                         case *syntax.CommClause:
1108                                 kind = "comm"
1109                         case *syntax.ForStmt:
1110                                 kind = "for"
1111                         default:
1112                                 kind = fmt.Sprintf("%T", node)
1113                         }
1114
1115                         // look for matching scope description
1116                         desc := kind + ":" + strings.Join(scope.Names(), " ")
1117                         found := false
1118                         for _, d := range test.scopes {
1119                                 if desc == d {
1120                                         found = true
1121                                         break
1122                                 }
1123                         }
1124                         if !found {
1125                                 t.Errorf("package %s: no matching scope found for %s", name, desc)
1126                         }
1127                 }
1128         }
1129 }
1130
1131 func TestInitOrderInfo(t *testing.T) {
1132         var tests = []struct {
1133                 src   string
1134                 inits []string
1135         }{
1136                 {`package p0; var (x = 1; y = x)`, []string{
1137                         "x = 1", "y = x",
1138                 }},
1139                 {`package p1; var (a = 1; b = 2; c = 3)`, []string{
1140                         "a = 1", "b = 2", "c = 3",
1141                 }},
1142                 {`package p2; var (a, b, c = 1, 2, 3)`, []string{
1143                         "a = 1", "b = 2", "c = 3",
1144                 }},
1145                 {`package p3; var _ = f(); func f() int { return 1 }`, []string{
1146                         "_ = f()", // blank var
1147                 }},
1148                 {`package p4; var (a = 0; x = y; y = z; z = 0)`, []string{
1149                         "a = 0", "z = 0", "y = z", "x = y",
1150                 }},
1151                 {`package p5; var (a, _ = m[0]; m map[int]string)`, []string{
1152                         "a, _ = m[0]", // blank var
1153                 }},
1154                 {`package p6; var a, b = f(); func f() (_, _ int) { return z, z }; var z = 0`, []string{
1155                         "z = 0", "a, b = f()",
1156                 }},
1157                 {`package p7; var (a = func() int { return b }(); b = 1)`, []string{
1158                         "b = 1", "a = func() int {…}()",
1159                 }},
1160                 {`package p8; var (a, b = func() (_, _ int) { return c, c }(); c = 1)`, []string{
1161                         "c = 1", "a, b = func() (_, _ int) {…}()",
1162                 }},
1163                 {`package p9; type T struct{}; func (T) m() int { _ = y; return 0 }; var x, y = T.m, 1`, []string{
1164                         "y = 1", "x = T.m",
1165                 }},
1166                 {`package p10; var (d = c + b; a = 0; b = 0; c = 0)`, []string{
1167                         "a = 0", "b = 0", "c = 0", "d = c + b",
1168                 }},
1169                 {`package p11; var (a = e + c; b = d + c; c = 0; d = 0; e = 0)`, []string{
1170                         "c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
1171                 }},
1172                 // emit an initializer for n:1 initializations only once (not for each node
1173                 // on the lhs which may appear in different order in the dependency graph)
1174                 {`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
1175                         "b = 0", "x, y = m[0]", "a = x",
1176                 }},
1177                 // test case from spec section on package initialization
1178                 {`package p12
1179
1180                 var (
1181                         a = c + b
1182                         b = f()
1183                         c = f()
1184                         d = 3
1185                 )
1186
1187                 func f() int {
1188                         d++
1189                         return d
1190                 }`, []string{
1191                         "d = 3", "b = f()", "c = f()", "a = c + b",
1192                 }},
1193                 // test case for issue 7131
1194                 {`package main
1195
1196                 var counter int
1197                 func next() int { counter++; return counter }
1198
1199                 var _ = makeOrder()
1200                 func makeOrder() []int { return []int{f, b, d, e, c, a} }
1201
1202                 var a       = next()
1203                 var b, c    = next(), next()
1204                 var d, e, f = next(), next(), next()
1205                 `, []string{
1206                         "a = next()", "b = next()", "c = next()", "d = next()", "e = next()", "f = next()", "_ = makeOrder()",
1207                 }},
1208                 // test case for issue 10709
1209                 {`package p13
1210
1211                 var (
1212                     v = t.m()
1213                     t = makeT(0)
1214                 )
1215
1216                 type T struct{}
1217
1218                 func (T) m() int { return 0 }
1219
1220                 func makeT(n int) T {
1221                     if n > 0 {
1222                         return makeT(n-1)
1223                     }
1224                     return T{}
1225                 }`, []string{
1226                         "t = makeT(0)", "v = t.m()",
1227                 }},
1228                 // test case for issue 10709: same as test before, but variable decls swapped
1229                 {`package p14
1230
1231                 var (
1232                     t = makeT(0)
1233                     v = t.m()
1234                 )
1235
1236                 type T struct{}
1237
1238                 func (T) m() int { return 0 }
1239
1240                 func makeT(n int) T {
1241                     if n > 0 {
1242                         return makeT(n-1)
1243                     }
1244                     return T{}
1245                 }`, []string{
1246                         "t = makeT(0)", "v = t.m()",
1247                 }},
1248                 // another candidate possibly causing problems with issue 10709
1249                 {`package p15
1250
1251                 var y1 = f1()
1252
1253                 func f1() int { return g1() }
1254                 func g1() int { f1(); return x1 }
1255
1256                 var x1 = 0
1257
1258                 var y2 = f2()
1259
1260                 func f2() int { return g2() }
1261                 func g2() int { return x2 }
1262
1263                 var x2 = 0`, []string{
1264                         "x1 = 0", "y1 = f1()", "x2 = 0", "y2 = f2()",
1265                 }},
1266         }
1267
1268         for _, test := range tests {
1269                 info := Info{}
1270                 name := mustTypecheck(t, "InitOrderInfo", test.src, &info)
1271
1272                 // number of initializers must match
1273                 if len(info.InitOrder) != len(test.inits) {
1274                         t.Errorf("package %s: got %d initializers; want %d", name, len(info.InitOrder), len(test.inits))
1275                         continue
1276                 }
1277
1278                 // initializers must match
1279                 for i, want := range test.inits {
1280                         got := info.InitOrder[i].String()
1281                         if got != want {
1282                                 t.Errorf("package %s, init %d: got %s; want %s", name, i, got, want)
1283                                 continue
1284                         }
1285                 }
1286         }
1287 }
1288
1289 func TestMultiFileInitOrder(t *testing.T) {
1290         mustParse := func(src string) *syntax.File {
1291                 f, err := parseSrc("main", src)
1292                 if err != nil {
1293                         t.Fatal(err)
1294                 }
1295                 return f
1296         }
1297
1298         fileA := mustParse(`package main; var a = 1`)
1299         fileB := mustParse(`package main; var b = 2`)
1300
1301         // The initialization order must not depend on the parse
1302         // order of the files, only on the presentation order to
1303         // the type-checker.
1304         for _, test := range []struct {
1305                 files []*syntax.File
1306                 want  string
1307         }{
1308                 {[]*syntax.File{fileA, fileB}, "[a = 1 b = 2]"},
1309                 {[]*syntax.File{fileB, fileA}, "[b = 2 a = 1]"},
1310         } {
1311                 var info Info
1312                 if _, err := new(Config).Check("main", test.files, &info); err != nil {
1313                         t.Fatal(err)
1314                 }
1315                 if got := fmt.Sprint(info.InitOrder); got != test.want {
1316                         t.Fatalf("got %s; want %s", got, test.want)
1317                 }
1318         }
1319 }
1320
1321 func TestFiles(t *testing.T) {
1322         var sources = []string{
1323                 "package p; type T struct{}; func (T) m1() {}",
1324                 "package p; func (T) m2() {}; var x interface{ m1(); m2() } = T{}",
1325                 "package p; func (T) m3() {}; var y interface{ m1(); m2(); m3() } = T{}",
1326                 "package p",
1327         }
1328
1329         var conf Config
1330         pkg := NewPackage("p", "p")
1331         var info Info
1332         check := NewChecker(&conf, pkg, &info)
1333
1334         for i, src := range sources {
1335                 filename := fmt.Sprintf("sources%d", i)
1336                 f, err := parseSrc(filename, src)
1337                 if err != nil {
1338                         t.Fatal(err)
1339                 }
1340                 if err := check.Files([]*syntax.File{f}); err != nil {
1341                         t.Error(err)
1342                 }
1343         }
1344
1345         // check InitOrder is [x y]
1346         var vars []string
1347         for _, init := range info.InitOrder {
1348                 for _, v := range init.Lhs {
1349                         vars = append(vars, v.Name())
1350                 }
1351         }
1352         if got, want := fmt.Sprint(vars), "[x y]"; got != want {
1353                 t.Errorf("InitOrder == %s, want %s", got, want)
1354         }
1355 }
1356
1357 type testImporter map[string]*Package
1358
1359 func (m testImporter) Import(path string) (*Package, error) {
1360         if pkg := m[path]; pkg != nil {
1361                 return pkg, nil
1362         }
1363         return nil, fmt.Errorf("package %q not found", path)
1364 }
1365
1366 func TestSelection(t *testing.T) {
1367         selections := make(map[*syntax.SelectorExpr]*Selection)
1368
1369         imports := make(testImporter)
1370         conf := Config{Importer: imports}
1371         makePkg := func(path, src string) {
1372                 f, err := parseSrc(path+".go", src)
1373                 if err != nil {
1374                         t.Fatal(err)
1375                 }
1376                 pkg, err := conf.Check(path, []*syntax.File{f}, &Info{Selections: selections})
1377                 if err != nil {
1378                         t.Fatal(err)
1379                 }
1380                 imports[path] = pkg
1381         }
1382
1383         const libSrc = `
1384 package lib
1385 type T float64
1386 const C T = 3
1387 var V T
1388 func F() {}
1389 func (T) M() {}
1390 `
1391         const mainSrc = `
1392 package main
1393 import "lib"
1394
1395 type A struct {
1396         *B
1397         C
1398 }
1399
1400 type B struct {
1401         b int
1402 }
1403
1404 func (B) f(int)
1405
1406 type C struct {
1407         c int
1408 }
1409
1410 func (C) g()
1411 func (*C) h()
1412
1413 func main() {
1414         // qualified identifiers
1415         var _ lib.T
1416         _ = lib.C
1417         _ = lib.F
1418         _ = lib.V
1419         _ = lib.T.M
1420
1421         // fields
1422         _ = A{}.B
1423         _ = new(A).B
1424
1425         _ = A{}.C
1426         _ = new(A).C
1427
1428         _ = A{}.b
1429         _ = new(A).b
1430
1431         _ = A{}.c
1432         _ = new(A).c
1433
1434         // methods
1435         _ = A{}.f
1436         _ = new(A).f
1437         _ = A{}.g
1438         _ = new(A).g
1439         _ = new(A).h
1440
1441         _ = B{}.f
1442         _ = new(B).f
1443
1444         _ = C{}.g
1445         _ = new(C).g
1446         _ = new(C).h
1447
1448         // method expressions
1449         _ = A.f
1450         _ = (*A).f
1451         _ = B.f
1452         _ = (*B).f
1453 }`
1454
1455         wantOut := map[string][2]string{
1456                 "lib.T.M": {"method expr (lib.T) M(lib.T)", ".[0]"},
1457
1458                 "A{}.B":    {"field (main.A) B *main.B", ".[0]"},
1459                 "new(A).B": {"field (*main.A) B *main.B", "->[0]"},
1460                 "A{}.C":    {"field (main.A) C main.C", ".[1]"},
1461                 "new(A).C": {"field (*main.A) C main.C", "->[1]"},
1462                 "A{}.b":    {"field (main.A) b int", "->[0 0]"},
1463                 "new(A).b": {"field (*main.A) b int", "->[0 0]"},
1464                 "A{}.c":    {"field (main.A) c int", ".[1 0]"},
1465                 "new(A).c": {"field (*main.A) c int", "->[1 0]"},
1466
1467                 "A{}.f":    {"method (main.A) f(int)", "->[0 0]"},
1468                 "new(A).f": {"method (*main.A) f(int)", "->[0 0]"},
1469                 "A{}.g":    {"method (main.A) g()", ".[1 0]"},
1470                 "new(A).g": {"method (*main.A) g()", "->[1 0]"},
1471                 "new(A).h": {"method (*main.A) h()", "->[1 1]"}, // TODO(gri) should this report .[1 1] ?
1472                 "B{}.f":    {"method (main.B) f(int)", ".[0]"},
1473                 "new(B).f": {"method (*main.B) f(int)", "->[0]"},
1474                 "C{}.g":    {"method (main.C) g()", ".[0]"},
1475                 "new(C).g": {"method (*main.C) g()", "->[0]"},
1476                 "new(C).h": {"method (*main.C) h()", "->[1]"}, // TODO(gri) should this report .[1] ?
1477
1478                 "A.f":    {"method expr (main.A) f(main.A, int)", "->[0 0]"},
1479                 "(*A).f": {"method expr (*main.A) f(*main.A, int)", "->[0 0]"},
1480                 "B.f":    {"method expr (main.B) f(main.B, int)", ".[0]"},
1481                 "(*B).f": {"method expr (*main.B) f(*main.B, int)", "->[0]"},
1482         }
1483
1484         makePkg("lib", libSrc)
1485         makePkg("main", mainSrc)
1486
1487         for e, sel := range selections {
1488                 _ = sel.String() // assertion: must not panic
1489
1490                 start := indexFor(mainSrc, syntax.StartPos(e))
1491                 end := indexFor(mainSrc, syntax.EndPos(e))
1492                 segment := mainSrc[start:end] // (all SelectorExprs are in main, not lib)
1493
1494                 direct := "."
1495                 if sel.Indirect() {
1496                         direct = "->"
1497                 }
1498                 got := [2]string{
1499                         sel.String(),
1500                         fmt.Sprintf("%s%v", direct, sel.Index()),
1501                 }
1502                 want := wantOut[segment]
1503                 if want != got {
1504                         t.Errorf("%s: got %q; want %q", segment, got, want)
1505                 }
1506                 delete(wantOut, segment)
1507
1508                 // We must explicitly assert properties of the
1509                 // Signature's receiver since it doesn't participate
1510                 // in Identical() or String().
1511                 sig, _ := sel.Type().(*Signature)
1512                 if sel.Kind() == MethodVal {
1513                         got := sig.Recv().Type()
1514                         want := sel.Recv()
1515                         if !Identical(got, want) {
1516                                 t.Errorf("%s: Recv() = %s, want %s", segment, got, want)
1517                         }
1518                 } else if sig != nil && sig.Recv() != nil {
1519                         t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
1520                 }
1521         }
1522         // Assert that all wantOut entries were used exactly once.
1523         for segment := range wantOut {
1524                 t.Errorf("no syntax.Selection found with syntax %q", segment)
1525         }
1526 }
1527
1528 // indexFor returns the index into s corresponding to the position pos.
1529 func indexFor(s string, pos syntax.Pos) int {
1530         i, line := 0, 1 // string index and corresponding line
1531         target := int(pos.Line())
1532         for line < target && i < len(s) {
1533                 if s[i] == '\n' {
1534                         line++
1535                 }
1536                 i++
1537         }
1538         return i + int(pos.Col()-1) // columns are 1-based
1539 }
1540
1541 func TestIssue8518(t *testing.T) {
1542         imports := make(testImporter)
1543         conf := Config{
1544                 Error:    func(err error) { t.Log(err) }, // don't exit after first error
1545                 Importer: imports,
1546         }
1547         makePkg := func(path, src string) {
1548                 f, err := parseSrc(path, src)
1549                 if err != nil {
1550                         t.Fatal(err)
1551                 }
1552                 pkg, _ := conf.Check(path, []*syntax.File{f}, nil) // errors logged via conf.Error
1553                 imports[path] = pkg
1554         }
1555
1556         const libSrc = `
1557 package a
1558 import "missing"
1559 const C1 = foo
1560 const C2 = missing.C
1561 `
1562
1563         const mainSrc = `
1564 package main
1565 import "a"
1566 var _ = a.C1
1567 var _ = a.C2
1568 `
1569
1570         makePkg("a", libSrc)
1571         makePkg("main", mainSrc) // don't crash when type-checking this package
1572 }
1573
1574 func TestLookupFieldOrMethodOnNil(t *testing.T) {
1575         // LookupFieldOrMethod on a nil type is expected to produce a run-time panic.
1576         defer func() {
1577                 const want = "LookupFieldOrMethod on nil type"
1578                 p := recover()
1579                 if s, ok := p.(string); !ok || s != want {
1580                         t.Fatalf("got %v, want %s", p, want)
1581                 }
1582         }()
1583         LookupFieldOrMethod(nil, false, nil, "")
1584 }
1585
1586 func TestLookupFieldOrMethod(t *testing.T) {
1587         // Test cases assume a lookup of the form a.f or x.f, where a stands for an
1588         // addressable value, and x for a non-addressable value (even though a variable
1589         // for ease of test case writing).
1590         var tests = []struct {
1591                 src      string
1592                 found    bool
1593                 index    []int
1594                 indirect bool
1595         }{
1596                 // field lookups
1597                 {"var x T; type T struct{}", false, nil, false},
1598                 {"var x T; type T struct{ f int }", true, []int{0}, false},
1599                 {"var x T; type T struct{ a, b, f, c int }", true, []int{2}, false},
1600
1601                 // method lookups
1602                 {"var a T; type T struct{}; func (T) f() {}", true, []int{0}, false},
1603                 {"var a *T; type T struct{}; func (T) f() {}", true, []int{0}, true},
1604                 {"var a T; type T struct{}; func (*T) f() {}", true, []int{0}, false},
1605                 {"var a *T; type T struct{}; func (*T) f() {}", true, []int{0}, true}, // TODO(gri) should this report indirect = false?
1606
1607                 // collisions
1608                 {"type ( E1 struct{ f int }; E2 struct{ f int }; x struct{ E1; *E2 })", false, []int{1, 0}, false},
1609                 {"type ( E1 struct{ f int }; E2 struct{}; x struct{ E1; *E2 }); func (E2) f() {}", false, []int{1, 0}, false},
1610
1611                 // outside methodset
1612                 // (*T).f method exists, but value of type T is not addressable
1613                 {"var x T; type T struct{}; func (*T) f() {}", false, nil, true},
1614         }
1615
1616         for _, test := range tests {
1617                 pkg, err := pkgFor("test", "package p;"+test.src, nil)
1618                 if err != nil {
1619                         t.Errorf("%s: incorrect test case: %s", test.src, err)
1620                         continue
1621                 }
1622
1623                 obj := pkg.Scope().Lookup("a")
1624                 if obj == nil {
1625                         if obj = pkg.Scope().Lookup("x"); obj == nil {
1626                                 t.Errorf("%s: incorrect test case - no object a or x", test.src)
1627                                 continue
1628                         }
1629                 }
1630
1631                 f, index, indirect := LookupFieldOrMethod(obj.Type(), obj.Name() == "a", pkg, "f")
1632                 if (f != nil) != test.found {
1633                         if f == nil {
1634                                 t.Errorf("%s: got no object; want one", test.src)
1635                         } else {
1636                                 t.Errorf("%s: got object = %v; want none", test.src, f)
1637                         }
1638                 }
1639                 if !sameSlice(index, test.index) {
1640                         t.Errorf("%s: got index = %v; want %v", test.src, index, test.index)
1641                 }
1642                 if indirect != test.indirect {
1643                         t.Errorf("%s: got indirect = %v; want %v", test.src, indirect, test.indirect)
1644                 }
1645         }
1646 }
1647
1648 func sameSlice(a, b []int) bool {
1649         if len(a) != len(b) {
1650                 return false
1651         }
1652         for i, x := range a {
1653                 if x != b[i] {
1654                         return false
1655                 }
1656         }
1657         return true
1658 }
1659
1660 // TestScopeLookupParent ensures that (*Scope).LookupParent returns
1661 // the correct result at various positions within the source.
1662 func TestScopeLookupParent(t *testing.T) {
1663         imports := make(testImporter)
1664         conf := Config{Importer: imports}
1665         var info Info
1666         makePkg := func(path, src string) {
1667                 f, err := parseSrc(path, src)
1668                 if err != nil {
1669                         t.Fatal(err)
1670                 }
1671                 imports[path], err = conf.Check(path, []*syntax.File{f}, &info)
1672                 if err != nil {
1673                         t.Fatal(err)
1674                 }
1675         }
1676
1677         makePkg("lib", "package lib; var X int")
1678         // Each /*name=kind:line*/ comment makes the test look up the
1679         // name at that point and checks that it resolves to a decl of
1680         // the specified kind and line number.  "undef" means undefined.
1681         mainSrc := `
1682 /*lib=pkgname:5*/ /*X=var:1*/ /*Pi=const:8*/ /*T=typename:9*/ /*Y=var:10*/ /*F=func:12*/
1683 package main
1684
1685 import "lib"
1686 import . "lib"
1687
1688 const Pi = 3.1415
1689 type T struct{}
1690 var Y, _ = lib.X, X
1691
1692 func F(){
1693         const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
1694         type /*t=undef*/ t /*t=typename:14*/ *t
1695         print(Y) /*Y=var:10*/
1696         x, Y := Y, /*x=undef*/ /*Y=var:10*/ Pi /*x=var:16*/ /*Y=var:16*/ ; _ = x; _ = Y
1697         var F = /*F=func:12*/ F /*F=var:17*/ ; _ = F
1698
1699         var a []int
1700         for i, x := range /*i=undef*/ /*x=var:16*/ a /*i=var:20*/ /*x=var:20*/ { _ = i; _ = x }
1701
1702         var i interface{}
1703         switch y := i.(type) { /*y=undef*/
1704         case /*y=undef*/ int /*y=var:23*/ :
1705         case float32, /*y=undef*/ float64 /*y=var:23*/ :
1706         default /*y=var:23*/:
1707                 println(y)
1708         }
1709         /*y=undef*/
1710
1711         switch int := i.(type) {
1712         case /*int=typename:0*/ int /*int=var:31*/ :
1713                 println(int)
1714         default /*int=var:31*/ :
1715         }
1716 }
1717 /*main=undef*/
1718 `
1719
1720         info.Uses = make(map[*syntax.Name]Object)
1721         makePkg("main", mainSrc)
1722         mainScope := imports["main"].Scope()
1723
1724         rx := regexp.MustCompile(`^/\*(\w*)=([\w:]*)\*/$`)
1725
1726         base := syntax.NewFileBase("main")
1727         syntax.CommentsDo(strings.NewReader(mainSrc), func(line, col uint, text string) {
1728                 pos := syntax.MakePos(base, line, col)
1729
1730                 // Syntax errors are not comments.
1731                 if text[0] != '/' {
1732                         t.Errorf("%s: %s", pos, text)
1733                         return
1734                 }
1735
1736                 // Parse the assertion in the comment.
1737                 m := rx.FindStringSubmatch(text)
1738                 if m == nil {
1739                         t.Errorf("%s: bad comment: %s", pos, text)
1740                         return
1741                 }
1742                 name, want := m[1], m[2]
1743
1744                 // Look up the name in the innermost enclosing scope.
1745                 inner := mainScope.Innermost(pos)
1746                 if inner == nil {
1747                         t.Errorf("%s: at %s: can't find innermost scope", pos, text)
1748                         return
1749                 }
1750                 got := "undef"
1751                 if _, obj := inner.LookupParent(name, pos); obj != nil {
1752                         kind := strings.ToLower(strings.TrimPrefix(reflect.TypeOf(obj).String(), "*types2."))
1753                         got = fmt.Sprintf("%s:%d", kind, obj.Pos().Line())
1754                 }
1755                 if got != want {
1756                         t.Errorf("%s: at %s: %s resolved to %s, want %s", pos, text, name, got, want)
1757                 }
1758         })
1759
1760         // Check that for each referring identifier,
1761         // a lookup of its name on the innermost
1762         // enclosing scope returns the correct object.
1763
1764         for id, wantObj := range info.Uses {
1765                 inner := mainScope.Innermost(id.Pos())
1766                 if inner == nil {
1767                         t.Errorf("%s: can't find innermost scope enclosing %q", id.Pos(), id.Value)
1768                         continue
1769                 }
1770
1771                 // Exclude selectors and qualified identifiers---lexical
1772                 // refs only.  (Ideally, we'd see if the AST parent is a
1773                 // SelectorExpr, but that requires PathEnclosingInterval
1774                 // from golang.org/x/tools/go/ast/astutil.)
1775                 if id.Value == "X" {
1776                         continue
1777                 }
1778
1779                 _, gotObj := inner.LookupParent(id.Value, id.Pos())
1780                 if gotObj != wantObj {
1781                         t.Errorf("%s: got %v, want %v", id.Pos(), gotObj, wantObj)
1782                         continue
1783                 }
1784         }
1785 }
1786
1787 var nopos syntax.Pos
1788
1789 // newDefined creates a new defined type named T with the given underlying type.
1790 func newDefined(underlying Type) *Named {
1791         tname := NewTypeName(nopos, nil, "T", nil)
1792         return NewNamed(tname, underlying, nil)
1793 }
1794
1795 func TestConvertibleTo(t *testing.T) {
1796         for _, test := range []struct {
1797                 v, t Type
1798                 want bool
1799         }{
1800                 {Typ[Int], Typ[Int], true},
1801                 {Typ[Int], Typ[Float32], true},
1802                 {Typ[Int], Typ[String], true},
1803                 {newDefined(Typ[Int]), Typ[Int], true},
1804                 {newDefined(new(Struct)), new(Struct), true},
1805                 {newDefined(Typ[Int]), new(Struct), false},
1806                 {Typ[UntypedInt], Typ[Int], true},
1807                 {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Int], 10)), true},
1808                 {NewSlice(Typ[Int]), NewArray(Typ[Int], 10), false},
1809                 {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Uint], 10)), false},
1810                 // Untyped string values are not permitted by the spec, so the behavior below is undefined.
1811                 {Typ[UntypedString], Typ[String], true},
1812         } {
1813                 if got := ConvertibleTo(test.v, test.t); got != test.want {
1814                         t.Errorf("ConvertibleTo(%v, %v) = %t, want %t", test.v, test.t, got, test.want)
1815                 }
1816         }
1817 }
1818
1819 func TestAssignableTo(t *testing.T) {
1820         for _, test := range []struct {
1821                 v, t Type
1822                 want bool
1823         }{
1824                 {Typ[Int], Typ[Int], true},
1825                 {Typ[Int], Typ[Float32], false},
1826                 {newDefined(Typ[Int]), Typ[Int], false},
1827                 {newDefined(new(Struct)), new(Struct), true},
1828                 {Typ[UntypedBool], Typ[Bool], true},
1829                 {Typ[UntypedString], Typ[Bool], false},
1830                 // Neither untyped string nor untyped numeric assignments arise during
1831                 // normal type checking, so the below behavior is technically undefined by
1832                 // the spec.
1833                 {Typ[UntypedString], Typ[String], true},
1834                 {Typ[UntypedInt], Typ[Int], true},
1835         } {
1836                 if got := AssignableTo(test.v, test.t); got != test.want {
1837                         t.Errorf("AssignableTo(%v, %v) = %t, want %t", test.v, test.t, got, test.want)
1838                 }
1839         }
1840 }
1841
1842 func TestIdentical(t *testing.T) {
1843         // For each test, we compare the types of objects X and Y in the source.
1844         tests := []struct {
1845                 src  string
1846                 want bool
1847         }{
1848                 // Basic types.
1849                 {"var X int; var Y int", true},
1850                 {"var X int; var Y string", false},
1851
1852                 // TODO: add more tests for complex types.
1853
1854                 // Named types.
1855                 {"type X int; type Y int", false},
1856
1857                 // Aliases.
1858                 {"type X = int; type Y = int", true},
1859
1860                 // Functions.
1861                 {`func X(int) string { return "" }; func Y(int) string { return "" }`, true},
1862                 {`func X() string { return "" }; func Y(int) string { return "" }`, false},
1863                 {`func X(int) string { return "" }; func Y(int) {}`, false},
1864
1865                 // Generic functions. Type parameters should be considered identical modulo
1866                 // renaming. See also issue #49722.
1867                 {`func X[P ~int](){}; func Y[Q ~int]() {}`, true},
1868                 {`func X[P1 any, P2 ~*P1](){}; func Y[Q1 any, Q2 ~*Q1]() {}`, true},
1869                 {`func X[P1 any, P2 ~[]P1](){}; func Y[Q1 any, Q2 ~*Q1]() {}`, false},
1870                 {`func X[P ~int](P){}; func Y[Q ~int](Q) {}`, true},
1871                 {`func X[P ~string](P){}; func Y[Q ~int](Q) {}`, false},
1872                 {`func X[P ~int]([]P){}; func Y[Q ~int]([]Q) {}`, true},
1873         }
1874
1875         for _, test := range tests {
1876                 pkg, err := pkgFor("test", "package p;"+test.src, nil)
1877                 if err != nil {
1878                         t.Errorf("%s: incorrect test case: %s", test.src, err)
1879                         continue
1880                 }
1881                 X := pkg.Scope().Lookup("X")
1882                 Y := pkg.Scope().Lookup("Y")
1883                 if X == nil || Y == nil {
1884                         t.Fatal("test must declare both X and Y")
1885                 }
1886                 if got := Identical(X.Type(), Y.Type()); got != test.want {
1887                         t.Errorf("Identical(%s, %s) = %t, want %t", X.Type(), Y.Type(), got, test.want)
1888                 }
1889         }
1890 }
1891
1892 func TestIdentical_issue15173(t *testing.T) {
1893         // Identical should allow nil arguments and be symmetric.
1894         for _, test := range []struct {
1895                 x, y Type
1896                 want bool
1897         }{
1898                 {Typ[Int], Typ[Int], true},
1899                 {Typ[Int], nil, false},
1900                 {nil, Typ[Int], false},
1901                 {nil, nil, true},
1902         } {
1903                 if got := Identical(test.x, test.y); got != test.want {
1904                         t.Errorf("Identical(%v, %v) = %t", test.x, test.y, got)
1905                 }
1906         }
1907 }
1908
1909 func TestIdenticalUnions(t *testing.T) {
1910         tname := NewTypeName(nopos, nil, "myInt", nil)
1911         myInt := NewNamed(tname, Typ[Int], nil)
1912         tmap := map[string]*Term{
1913                 "int":     NewTerm(false, Typ[Int]),
1914                 "~int":    NewTerm(true, Typ[Int]),
1915                 "string":  NewTerm(false, Typ[String]),
1916                 "~string": NewTerm(true, Typ[String]),
1917                 "myInt":   NewTerm(false, myInt),
1918         }
1919         makeUnion := func(s string) *Union {
1920                 parts := strings.Split(s, "|")
1921                 var terms []*Term
1922                 for _, p := range parts {
1923                         term := tmap[p]
1924                         if term == nil {
1925                                 t.Fatalf("missing term %q", p)
1926                         }
1927                         terms = append(terms, term)
1928                 }
1929                 return NewUnion(terms)
1930         }
1931         for _, test := range []struct {
1932                 x, y string
1933                 want bool
1934         }{
1935                 // These tests are just sanity checks. The tests for type sets and
1936                 // interfaces provide much more test coverage.
1937                 {"int|~int", "~int", true},
1938                 {"myInt|~int", "~int", true},
1939                 {"int|string", "string|int", true},
1940                 {"int|int|string", "string|int", true},
1941                 {"myInt|string", "int|string", false},
1942         } {
1943                 x := makeUnion(test.x)
1944                 y := makeUnion(test.y)
1945                 if got := Identical(x, y); got != test.want {
1946                         t.Errorf("Identical(%v, %v) = %t", test.x, test.y, got)
1947                 }
1948         }
1949 }
1950
1951 func TestIssue15305(t *testing.T) {
1952         const src = "package p; func f() int16; var _ = f(undef)"
1953         f, err := parseSrc("issue15305.go", src)
1954         if err != nil {
1955                 t.Fatal(err)
1956         }
1957         conf := Config{
1958                 Error: func(err error) {}, // allow errors
1959         }
1960         info := &Info{
1961                 Types: make(map[syntax.Expr]TypeAndValue),
1962         }
1963         conf.Check("p", []*syntax.File{f}, info) // ignore result
1964         for e, tv := range info.Types {
1965                 if _, ok := e.(*syntax.CallExpr); ok {
1966                         if tv.Type != Typ[Int16] {
1967                                 t.Errorf("CallExpr has type %v, want int16", tv.Type)
1968                         }
1969                         return
1970                 }
1971         }
1972         t.Errorf("CallExpr has no type")
1973 }
1974
1975 // TestCompositeLitTypes verifies that Info.Types registers the correct
1976 // types for composite literal expressions and composite literal type
1977 // expressions.
1978 func TestCompositeLitTypes(t *testing.T) {
1979         for _, test := range []struct {
1980                 lit, typ string
1981         }{
1982                 {`[16]byte{}`, `[16]byte`},
1983                 {`[...]byte{}`, `[0]byte`},                // test for issue #14092
1984                 {`[...]int{1, 2, 3}`, `[3]int`},           // test for issue #14092
1985                 {`[...]int{90: 0, 98: 1, 2}`, `[100]int`}, // test for issue #14092
1986                 {`[]int{}`, `[]int`},
1987                 {`map[string]bool{"foo": true}`, `map[string]bool`},
1988                 {`struct{}{}`, `struct{}`},
1989                 {`struct{x, y int; z complex128}{}`, `struct{x int; y int; z complex128}`},
1990         } {
1991                 f, err := parseSrc(test.lit, "package p; var _ = "+test.lit)
1992                 if err != nil {
1993                         t.Fatalf("%s: %v", test.lit, err)
1994                 }
1995
1996                 info := &Info{
1997                         Types: make(map[syntax.Expr]TypeAndValue),
1998                 }
1999                 if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
2000                         t.Fatalf("%s: %v", test.lit, err)
2001                 }
2002
2003                 cmptype := func(x syntax.Expr, want string) {
2004                         tv, ok := info.Types[x]
2005                         if !ok {
2006                                 t.Errorf("%s: no Types entry found", test.lit)
2007                                 return
2008                         }
2009                         if tv.Type == nil {
2010                                 t.Errorf("%s: type is nil", test.lit)
2011                                 return
2012                         }
2013                         if got := tv.Type.String(); got != want {
2014                                 t.Errorf("%s: got %v, want %s", test.lit, got, want)
2015                         }
2016                 }
2017
2018                 // test type of composite literal expression
2019                 rhs := f.DeclList[0].(*syntax.VarDecl).Values
2020                 cmptype(rhs, test.typ)
2021
2022                 // test type of composite literal type expression
2023                 cmptype(rhs.(*syntax.CompositeLit).Type, test.typ)
2024         }
2025 }
2026
2027 // TestObjectParents verifies that objects have parent scopes or not
2028 // as specified by the Object interface.
2029 func TestObjectParents(t *testing.T) {
2030         const src = `
2031 package p
2032
2033 const C = 0
2034
2035 type T1 struct {
2036         a, b int
2037         T2
2038 }
2039
2040 type T2 interface {
2041         im1()
2042         im2()
2043 }
2044
2045 func (T1) m1() {}
2046 func (*T1) m2() {}
2047
2048 func f(x int) { y := x; print(y) }
2049 `
2050
2051         f, err := parseSrc("src", src)
2052         if err != nil {
2053                 t.Fatal(err)
2054         }
2055
2056         info := &Info{
2057                 Defs: make(map[*syntax.Name]Object),
2058         }
2059         if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
2060                 t.Fatal(err)
2061         }
2062
2063         for ident, obj := range info.Defs {
2064                 if obj == nil {
2065                         // only package names and implicit vars have a nil object
2066                         // (in this test we only need to handle the package name)
2067                         if ident.Value != "p" {
2068                                 t.Errorf("%v has nil object", ident)
2069                         }
2070                         continue
2071                 }
2072
2073                 // struct fields, type-associated and interface methods
2074                 // have no parent scope
2075                 wantParent := true
2076                 switch obj := obj.(type) {
2077                 case *Var:
2078                         if obj.IsField() {
2079                                 wantParent = false
2080                         }
2081                 case *Func:
2082                         if obj.Type().(*Signature).Recv() != nil { // method
2083                                 wantParent = false
2084                         }
2085                 }
2086
2087                 gotParent := obj.Parent() != nil
2088                 switch {
2089                 case gotParent && !wantParent:
2090                         t.Errorf("%v: want no parent, got %s", ident, obj.Parent())
2091                 case !gotParent && wantParent:
2092                         t.Errorf("%v: no parent found", ident)
2093                 }
2094         }
2095 }
2096
2097 // TestFailedImport tests that we don't get follow-on errors
2098 // elsewhere in a package due to failing to import a package.
2099 func TestFailedImport(t *testing.T) {
2100         testenv.MustHaveGoBuild(t)
2101
2102         const src = `
2103 package p
2104
2105 import foo "go/types/thisdirectorymustnotexistotherwisethistestmayfail/foo" // should only see an error here
2106
2107 const c = foo.C
2108 type T = foo.T
2109 var v T = c
2110 func f(x T) T { return foo.F(x) }
2111 `
2112         f, err := parseSrc("src", src)
2113         if err != nil {
2114                 t.Fatal(err)
2115         }
2116         files := []*syntax.File{f}
2117
2118         // type-check using all possible importers
2119         for _, compiler := range []string{"gc", "gccgo", "source"} {
2120                 errcount := 0
2121                 conf := Config{
2122                         Error: func(err error) {
2123                                 // we should only see the import error
2124                                 if errcount > 0 || !strings.Contains(err.Error(), "could not import") {
2125                                         t.Errorf("for %s importer, got unexpected error: %v", compiler, err)
2126                                 }
2127                                 errcount++
2128                         },
2129                         //Importer: importer.For(compiler, nil),
2130                 }
2131
2132                 info := &Info{
2133                         Uses: make(map[*syntax.Name]Object),
2134                 }
2135                 pkg, _ := conf.Check("p", files, info)
2136                 if pkg == nil {
2137                         t.Errorf("for %s importer, type-checking failed to return a package", compiler)
2138                         continue
2139                 }
2140
2141                 imports := pkg.Imports()
2142                 if len(imports) != 1 {
2143                         t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
2144                         continue
2145                 }
2146                 imp := imports[0]
2147                 if imp.Name() != "foo" {
2148                         t.Errorf(`for %s importer, got %q, want "foo"`, compiler, imp.Name())
2149                         continue
2150                 }
2151
2152                 // verify that all uses of foo refer to the imported package foo (imp)
2153                 for ident, obj := range info.Uses {
2154                         if ident.Value == "foo" {
2155                                 if obj, ok := obj.(*PkgName); ok {
2156                                         if obj.Imported() != imp {
2157                                                 t.Errorf("%s resolved to %v; want %v", ident.Value, obj.Imported(), imp)
2158                                         }
2159                                 } else {
2160                                         t.Errorf("%s resolved to %v; want package name", ident.Value, obj)
2161                                 }
2162                         }
2163                 }
2164         }
2165 }
2166
2167 func TestInstantiate(t *testing.T) {
2168         // eventually we like more tests but this is a start
2169         const src = "package p; type T[P any] *T[P]"
2170         pkg, err := pkgFor(".", src, nil)
2171         if err != nil {
2172                 t.Fatal(err)
2173         }
2174
2175         // type T should have one type parameter
2176         T := pkg.Scope().Lookup("T").Type().(*Named)
2177         if n := T.TypeParams().Len(); n != 1 {
2178                 t.Fatalf("expected 1 type parameter; found %d", n)
2179         }
2180
2181         // instantiation should succeed (no endless recursion)
2182         // even with a nil *Checker
2183         res, err := Instantiate(nil, T, []Type{Typ[Int]}, false)
2184         if err != nil {
2185                 t.Fatal(err)
2186         }
2187
2188         // instantiated type should point to itself
2189         if p := res.Underlying().(*Pointer).Elem(); p != res {
2190                 t.Fatalf("unexpected result type: %s points to %s", res, p)
2191         }
2192 }
2193
2194 func TestInstantiateErrors(t *testing.T) {
2195         tests := []struct {
2196                 src    string // by convention, T must be the type being instantiated
2197                 targs  []Type
2198                 wantAt int // -1 indicates no error
2199         }{
2200                 {"type T[P interface{~string}] int", []Type{Typ[Int]}, 0},
2201                 {"type T[P1 interface{int}, P2 interface{~string}] int", []Type{Typ[Int], Typ[Int]}, 1},
2202                 {"type T[P1 any, P2 interface{~[]P1}] int", []Type{Typ[Int], NewSlice(Typ[String])}, 1},
2203                 {"type T[P1 interface{~[]P2}, P2 any] int", []Type{NewSlice(Typ[String]), Typ[Int]}, 0},
2204         }
2205
2206         for _, test := range tests {
2207                 src := "package p; " + test.src
2208                 pkg, err := pkgFor(".", src, nil)
2209                 if err != nil {
2210                         t.Fatal(err)
2211                 }
2212
2213                 T := pkg.Scope().Lookup("T").Type().(*Named)
2214
2215                 _, err = Instantiate(nil, T, test.targs, true)
2216                 if err == nil {
2217                         t.Fatalf("Instantiate(%v, %v) returned nil error, want non-nil", T, test.targs)
2218                 }
2219
2220                 var argErr *ArgumentError
2221                 if !errors.As(err, &argErr) {
2222                         t.Fatalf("Instantiate(%v, %v): error is not an *ArgumentError", T, test.targs)
2223                 }
2224
2225                 if argErr.Index != test.wantAt {
2226                         t.Errorf("Instantate(%v, %v): error at index %d, want index %d", T, test.targs, argErr.Index, test.wantAt)
2227                 }
2228         }
2229 }
2230
2231 func TestArgumentErrorUnwrapping(t *testing.T) {
2232         var err error = &ArgumentError{
2233                 Index: 1,
2234                 Err:   Error{Msg: "test"},
2235         }
2236         var e Error
2237         if !errors.As(err, &e) {
2238                 t.Fatalf("error %v does not wrap types.Error", err)
2239         }
2240         if e.Msg != "test" {
2241                 t.Errorf("e.Msg = %q, want %q", e.Msg, "test")
2242         }
2243 }
2244
2245 func TestInstanceIdentity(t *testing.T) {
2246         imports := make(testImporter)
2247         conf := Config{Importer: imports}
2248         makePkg := func(src string) {
2249                 f, err := parseSrc("", src)
2250                 if err != nil {
2251                         t.Fatal(err)
2252                 }
2253                 name := f.PkgName.Value
2254                 pkg, err := conf.Check(name, []*syntax.File{f}, nil)
2255                 if err != nil {
2256                         t.Fatal(err)
2257                 }
2258                 imports[name] = pkg
2259         }
2260         makePkg(`package lib; type T[P any] struct{}`)
2261         makePkg(`package a; import "lib"; var A lib.T[int]`)
2262         makePkg(`package b; import "lib"; var B lib.T[int]`)
2263         a := imports["a"].Scope().Lookup("A")
2264         b := imports["b"].Scope().Lookup("B")
2265         if !Identical(a.Type(), b.Type()) {
2266                 t.Errorf("mismatching types: a.A: %s, b.B: %s", a.Type(), b.Type())
2267         }
2268 }
2269
2270 func TestImplements(t *testing.T) {
2271         const src = `
2272 package p
2273
2274 type EmptyIface interface{}
2275
2276 type I interface {
2277         m()
2278 }
2279
2280 type C interface {
2281         m()
2282         ~int
2283 }
2284
2285 type Integer interface{
2286         int8 | int16 | int32 | int64
2287 }
2288
2289 type EmptyTypeSet interface{
2290         Integer
2291         ~string
2292 }
2293
2294 type N1 int
2295 func (N1) m() {}
2296
2297 type N2 int
2298 func (*N2) m() {}
2299
2300 type N3 int
2301 func (N3) m(int) {}
2302
2303 type N4 string
2304 func (N4) m()
2305
2306 type Bad Bad // invalid type
2307 `
2308
2309         f, err := parseSrc("p.go", src)
2310         if err != nil {
2311                 t.Fatal(err)
2312         }
2313         conf := Config{Error: func(error) {}}
2314         pkg, _ := conf.Check(f.PkgName.Value, []*syntax.File{f}, nil)
2315
2316         lookup := func(tname string) Type { return pkg.Scope().Lookup(tname).Type() }
2317         var (
2318                 EmptyIface   = lookup("EmptyIface").Underlying().(*Interface)
2319                 I            = lookup("I").(*Named)
2320                 II           = I.Underlying().(*Interface)
2321                 C            = lookup("C").(*Named)
2322                 CI           = C.Underlying().(*Interface)
2323                 Integer      = lookup("Integer").Underlying().(*Interface)
2324                 EmptyTypeSet = lookup("EmptyTypeSet").Underlying().(*Interface)
2325                 N1           = lookup("N1")
2326                 N1p          = NewPointer(N1)
2327                 N2           = lookup("N2")
2328                 N2p          = NewPointer(N2)
2329                 N3           = lookup("N3")
2330                 N4           = lookup("N4")
2331                 Bad          = lookup("Bad")
2332         )
2333
2334         tests := []struct {
2335                 V    Type
2336                 T    *Interface
2337                 want bool
2338         }{
2339                 {I, II, true},
2340                 {I, CI, false},
2341                 {C, II, true},
2342                 {C, CI, true},
2343                 {Typ[Int8], Integer, true},
2344                 {Typ[Int64], Integer, true},
2345                 {Typ[String], Integer, false},
2346                 {EmptyTypeSet, II, true},
2347                 {EmptyTypeSet, EmptyTypeSet, true},
2348                 {Typ[Int], EmptyTypeSet, false},
2349                 {N1, II, true},
2350                 {N1, CI, true},
2351                 {N1p, II, true},
2352                 {N1p, CI, false},
2353                 {N2, II, false},
2354                 {N2, CI, false},
2355                 {N2p, II, true},
2356                 {N2p, CI, false},
2357                 {N3, II, false},
2358                 {N3, CI, false},
2359                 {N4, II, true},
2360                 {N4, CI, false},
2361                 {Bad, II, false},
2362                 {Bad, CI, false},
2363                 {Bad, EmptyIface, true},
2364         }
2365
2366         for _, test := range tests {
2367                 if got := Implements(test.V, test.T); got != test.want {
2368                         t.Errorf("Implements(%s, %s) = %t, want %t", test.V, test.T, got, test.want)
2369                 }
2370
2371                 // The type assertion x.(T) is valid if T is an interface or if T implements the type of x.
2372                 // The assertion is never valid if T is a bad type.
2373                 V := test.T
2374                 T := test.V
2375                 want := false
2376                 if _, ok := T.Underlying().(*Interface); (ok || Implements(T, V)) && T != Bad {
2377                         want = true
2378                 }
2379                 if got := AssertableTo(V, T); got != want {
2380                         t.Errorf("AssertableTo(%s, %s) = %t, want %t", V, T, got, want)
2381                 }
2382         }
2383 }
2384
2385 func TestMissingMethodAlternative(t *testing.T) {
2386         const src = `
2387 package p
2388 type T interface {
2389         m()
2390 }
2391
2392 type V0 struct{}
2393 func (V0) m() {}
2394
2395 type V1 struct{}
2396
2397 type V2 struct{}
2398 func (V2) m() int
2399
2400 type V3 struct{}
2401 func (*V3) m()
2402
2403 type V4 struct{}
2404 func (V4) M()
2405 `
2406
2407         pkg, err := pkgFor("p.go", src, nil)
2408         if err != nil {
2409                 t.Fatal(err)
2410         }
2411
2412         T := pkg.Scope().Lookup("T").Type().Underlying().(*Interface)
2413         lookup := func(name string) (*Func, bool) {
2414                 return MissingMethod(pkg.Scope().Lookup(name).Type(), T, true)
2415         }
2416
2417         // V0 has method m with correct signature. Should not report wrongType.
2418         method, wrongType := lookup("V0")
2419         if method != nil || wrongType {
2420                 t.Fatalf("V0: got method = %v, wrongType = %v", method, wrongType)
2421         }
2422
2423         checkMissingMethod := func(tname string, reportWrongType bool) {
2424                 method, wrongType := lookup(tname)
2425                 if method == nil || method.Name() != "m" || wrongType != reportWrongType {
2426                         t.Fatalf("%s: got method = %v, wrongType = %v", tname, method, wrongType)
2427                 }
2428         }
2429
2430         // V1 has no method m. Should not report wrongType.
2431         checkMissingMethod("V1", false)
2432
2433         // V2 has method m with wrong signature type (ignoring receiver). Should report wrongType.
2434         checkMissingMethod("V2", true)
2435
2436         // V3 has no method m but it exists on *V3. Should report wrongType.
2437         checkMissingMethod("V3", true)
2438
2439         // V4 has no method m but has M. Should not report wrongType.
2440         checkMissingMethod("V4", false)
2441 }