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