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