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