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