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