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