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