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