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