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