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