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