]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/types2/api_test.go
[dev.fuzz] all: merge master (65f0d24) into dev.fuzz
[gostls13.git] / src / cmd / compile / internal / types2 / api_test.go
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package types2_test
6
7 import (
8         "bytes"
9         "cmd/compile/internal/syntax"
10         "fmt"
11         "internal/testenv"
12         "reflect"
13         "regexp"
14         "strings"
15         "testing"
16
17         . "cmd/compile/internal/types2"
18 )
19
20 // genericPkg is a source prefix for packages that contain generic code.
21 const genericPkg = "package generic_"
22
23 // brokenPkg is a source prefix for packages that are not expected to parse
24 // or type-check cleanly. They are always parsed assuming that they contain
25 // generic code.
26 const brokenPkg = "package broken_"
27
28 func parseSrc(path, src string) (*syntax.File, error) {
29         var mode syntax.Mode
30         if strings.HasPrefix(src, genericPkg) || strings.HasPrefix(src, brokenPkg) {
31                 mode = syntax.AllowGenerics
32         }
33         errh := func(error) {} // dummy error handler so that parsing continues in presence of errors
34         return syntax.Parse(syntax.NewFileBase(path), strings.NewReader(src), errh, nil, mode)
35 }
36
37 func pkgFor(path, source string, info *Info) (*Package, error) {
38         f, err := parseSrc(path, source)
39         if err != nil {
40                 return nil, err
41         }
42         conf := Config{Importer: defaultImporter()}
43         return conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
44 }
45
46 func mustTypecheck(t *testing.T, path, source string, info *Info) string {
47         pkg, err := pkgFor(path, source, info)
48         if err != nil {
49                 name := path
50                 if pkg != nil {
51                         name = "package " + pkg.Name()
52                 }
53                 t.Fatalf("%s: didn't type-check (%s)", name, err)
54         }
55         return pkg.Name()
56 }
57
58 func mayTypecheck(t *testing.T, path, source string, info *Info) (string, error) {
59         f, err := parseSrc(path, source)
60         if f == nil { // ignore errors unless f is nil
61                 t.Fatalf("%s: unable to parse: %s", path, err)
62         }
63         conf := Config{
64                 Error:    func(err error) {},
65                 Importer: defaultImporter(),
66         }
67         pkg, err := conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
68         return pkg.Name(), err
69 }
70
71 func TestValuesInfo(t *testing.T) {
72         var tests = []struct {
73                 src  string
74                 expr string // constant expression
75                 typ  string // constant type
76                 val  string // constant value
77         }{
78                 {`package a0; const _ = false`, `false`, `untyped bool`, `false`},
79                 {`package a1; const _ = 0`, `0`, `untyped int`, `0`},
80                 {`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
81                 {`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
82                 {`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
83                 {`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
84
85                 {`package b0; var _ = false`, `false`, `bool`, `false`},
86                 {`package b1; var _ = 0`, `0`, `int`, `0`},
87                 {`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
88                 {`package b3; var _ = 0.`, `0.`, `float64`, `0`},
89                 {`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
90                 {`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
91
92                 {`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
93                 {`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
94                 {`package c0c; type T bool; var _ = T(false)`, `T(false)`, `c0c.T`, `false`},
95
96                 {`package c1a; var _ = int(0)`, `0`, `int`, `0`},
97                 {`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`},
98                 {`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`},
99
100                 {`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`},
101                 {`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`},
102                 {`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`},
103
104                 {`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`},
105                 {`package c3b; var _ = float32(0.)`, `float32(0.)`, `float32`, `0`},
106                 {`package c3c; type T float32; var _ = T(0.)`, `T(0.)`, `c3c.T`, `0`},
107
108                 {`package c4a; var _ = complex64(0i)`, `0i`, `complex64`, `(0 + 0i)`},
109                 {`package c4b; var _ = complex64(0i)`, `complex64(0i)`, `complex64`, `(0 + 0i)`},
110                 {`package c4c; type T complex64; var _ = T(0i)`, `T(0i)`, `c4c.T`, `(0 + 0i)`},
111
112                 {`package c5a; var _ = string("foo")`, `"foo"`, `string`, `"foo"`},
113                 {`package c5b; var _ = string("foo")`, `string("foo")`, `string`, `"foo"`},
114                 {`package c5c; type T string; var _ = T("foo")`, `T("foo")`, `c5c.T`, `"foo"`},
115                 {`package c5d; var _ = string(65)`, `65`, `untyped int`, `65`},
116                 {`package c5e; var _ = string('A')`, `'A'`, `untyped rune`, `65`},
117                 {`package c5f; type T string; var _ = T('A')`, `'A'`, `untyped rune`, `65`},
118                 {`package c5g; var s uint; var _ = string(1 << s)`, `1 << s`, `untyped int`, ``},
119
120                 {`package d0; var _ = []byte("foo")`, `"foo"`, `string`, `"foo"`},
121                 {`package d1; var _ = []byte(string("foo"))`, `"foo"`, `string`, `"foo"`},
122                 {`package d2; var _ = []byte(string("foo"))`, `string("foo")`, `string`, `"foo"`},
123                 {`package d3; type T []byte; var _ = T("foo")`, `"foo"`, `string`, `"foo"`},
124
125                 {`package e0; const _ = float32( 1e-200)`, `float32(1e-200)`, `float32`, `0`},
126                 {`package e1; const _ = float32(-1e-200)`, `float32(-1e-200)`, `float32`, `0`},
127                 {`package e2; const _ = float64( 1e-2000)`, `float64(1e-2000)`, `float64`, `0`},
128                 {`package e3; const _ = float64(-1e-2000)`, `float64(-1e-2000)`, `float64`, `0`},
129                 {`package e4; const _ = complex64( 1e-200)`, `complex64(1e-200)`, `complex64`, `(0 + 0i)`},
130                 {`package e5; const _ = complex64(-1e-200)`, `complex64(-1e-200)`, `complex64`, `(0 + 0i)`},
131                 {`package e6; const _ = complex128( 1e-2000)`, `complex128(1e-2000)`, `complex128`, `(0 + 0i)`},
132                 {`package e7; const _ = complex128(-1e-2000)`, `complex128(-1e-2000)`, `complex128`, `(0 + 0i)`},
133
134                 {`package f0 ; var _ float32 =  1e-200`, `1e-200`, `float32`, `0`},
135                 {`package f1 ; var _ float32 = -1e-200`, `-1e-200`, `float32`, `0`},
136                 {`package f2a; var _ float64 =  1e-2000`, `1e-2000`, `float64`, `0`},
137                 {`package f3a; var _ float64 = -1e-2000`, `-1e-2000`, `float64`, `0`},
138                 {`package f2b; var _         =  1e-2000`, `1e-2000`, `float64`, `0`},
139                 {`package f3b; var _         = -1e-2000`, `-1e-2000`, `float64`, `0`},
140                 {`package f4 ; var _ complex64  =  1e-200 `, `1e-200`, `complex64`, `(0 + 0i)`},
141                 {`package f5 ; var _ complex64  = -1e-200 `, `-1e-200`, `complex64`, `(0 + 0i)`},
142                 {`package f6a; var _ complex128 =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
143                 {`package f7a; var _ complex128 = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
144                 {`package f6b; var _            =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
145                 {`package f7b; var _            = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
146
147                 {`package g0; const (a = len([iota]int{}); b; c); const _ = c`, `c`, `int`, `2`}, // issue #22341
148         }
149
150         for _, test := range tests {
151                 info := Info{
152                         Types: make(map[syntax.Expr]TypeAndValue),
153                 }
154                 name := mustTypecheck(t, "ValuesInfo", test.src, &info)
155
156                 // look for expression
157                 var expr syntax.Expr
158                 for e := range info.Types {
159                         if syntax.String(e) == test.expr {
160                                 expr = e
161                                 break
162                         }
163                 }
164                 if expr == nil {
165                         t.Errorf("package %s: no expression found for %s", name, test.expr)
166                         continue
167                 }
168                 tv := info.Types[expr]
169
170                 // check that type is correct
171                 if got := tv.Type.String(); got != test.typ {
172                         t.Errorf("package %s: got type %s; want %s", name, got, test.typ)
173                         continue
174                 }
175
176                 // if we have a constant, check that value is correct
177                 if tv.Value != nil {
178                         if got := tv.Value.ExactString(); got != test.val {
179                                 t.Errorf("package %s: got value %s; want %s", name, got, test.val)
180                         }
181                 } else {
182                         if test.val != "" {
183                                 t.Errorf("package %s: no constant found; want %s", name, test.val)
184                         }
185                 }
186         }
187 }
188
189 func TestTypesInfo(t *testing.T) {
190         var tests = []struct {
191                 src  string
192                 expr string // expression
193                 typ  string // value type
194         }{
195                 // single-valued expressions of untyped constants
196                 {`package b0; var x interface{} = false`, `false`, `bool`},
197                 {`package b1; var x interface{} = 0`, `0`, `int`},
198                 {`package b2; var x interface{} = 0.`, `0.`, `float64`},
199                 {`package b3; var x interface{} = 0i`, `0i`, `complex128`},
200                 {`package b4; var x interface{} = "foo"`, `"foo"`, `string`},
201
202                 // uses of nil
203                 {`package n0; var _ *int = nil`, `nil`, `*int`},
204                 {`package n1; var _ func() = nil`, `nil`, `func()`},
205                 {`package n2; var _ []byte = nil`, `nil`, `[]byte`},
206                 {`package n3; var _ map[int]int = nil`, `nil`, `map[int]int`},
207                 {`package n4; var _ chan int = nil`, `nil`, `chan int`},
208                 {`package n5a; var _ interface{} = (*int)(nil)`, `nil`, `*int`},
209                 {`package n5b; var _ interface{m()} = nil`, `nil`, `interface{m()}`},
210                 {`package n6; import "unsafe"; var _ unsafe.Pointer = nil`, `nil`, `unsafe.Pointer`},
211
212                 {`package n10; var (x *int; _ = x == nil)`, `nil`, `*int`},
213                 {`package n11; var (x func(); _ = x == nil)`, `nil`, `func()`},
214                 {`package n12; var (x []byte; _ = x == nil)`, `nil`, `[]byte`},
215                 {`package n13; var (x map[int]int; _ = x == nil)`, `nil`, `map[int]int`},
216                 {`package n14; var (x chan int; _ = x == nil)`, `nil`, `chan int`},
217                 {`package n15a; var (x interface{}; _ = x == (*int)(nil))`, `nil`, `*int`},
218                 {`package n15b; var (x interface{m()}; _ = x == nil)`, `nil`, `interface{m()}`},
219                 {`package n15; import "unsafe"; var (x unsafe.Pointer; _ = x == nil)`, `nil`, `unsafe.Pointer`},
220
221                 {`package n20; var _ = (*int)(nil)`, `nil`, `*int`},
222                 {`package n21; var _ = (func())(nil)`, `nil`, `func()`},
223                 {`package n22; var _ = ([]byte)(nil)`, `nil`, `[]byte`},
224                 {`package n23; var _ = (map[int]int)(nil)`, `nil`, `map[int]int`},
225                 {`package n24; var _ = (chan int)(nil)`, `nil`, `chan int`},
226                 {`package n25a; var _ = (interface{})((*int)(nil))`, `nil`, `*int`},
227                 {`package n25b; var _ = (interface{m()})(nil)`, `nil`, `interface{m()}`},
228                 {`package n26; import "unsafe"; var _ = unsafe.Pointer(nil)`, `nil`, `unsafe.Pointer`},
229
230                 {`package n30; func f(*int) { f(nil) }`, `nil`, `*int`},
231                 {`package n31; func f(func()) { f(nil) }`, `nil`, `func()`},
232                 {`package n32; func f([]byte) { f(nil) }`, `nil`, `[]byte`},
233                 {`package n33; func f(map[int]int) { f(nil) }`, `nil`, `map[int]int`},
234                 {`package n34; func f(chan int) { f(nil) }`, `nil`, `chan int`},
235                 {`package n35a; func f(interface{}) { f((*int)(nil)) }`, `nil`, `*int`},
236                 {`package n35b; func f(interface{m()}) { f(nil) }`, `nil`, `interface{m()}`},
237                 {`package n35; import "unsafe"; func f(unsafe.Pointer) { f(nil) }`, `nil`, `unsafe.Pointer`},
238
239                 // comma-ok expressions
240                 {`package p0; var x interface{}; var _, _ = x.(int)`,
241                         `x.(int)`,
242                         `(int, bool)`,
243                 },
244                 {`package p1; var x interface{}; func _() { _, _ = x.(int) }`,
245                         `x.(int)`,
246                         `(int, bool)`,
247                 },
248                 {`package p2a; type mybool bool; var m map[string]complex128; var b mybool; func _() { _, b = m["foo"] }`,
249                         `m["foo"]`,
250                         `(complex128, p2a.mybool)`,
251                 },
252                 {`package p2b; var m map[string]complex128; var b bool; func _() { _, b = m["foo"] }`,
253                         `m["foo"]`,
254                         `(complex128, bool)`,
255                 },
256                 {`package p3; var c chan string; var _, _ = <-c`,
257                         `<-c`,
258                         `(string, bool)`,
259                 },
260
261                 // issue 6796
262                 {`package issue6796_a; var x interface{}; var _, _ = (x.(int))`,
263                         `x.(int)`,
264                         `(int, bool)`,
265                 },
266                 {`package issue6796_b; var c chan string; var _, _ = (<-c)`,
267                         `(<-c)`,
268                         `(string, bool)`,
269                 },
270                 {`package issue6796_c; var c chan string; var _, _ = (<-c)`,
271                         `<-c`,
272                         `(string, bool)`,
273                 },
274                 {`package issue6796_d; var c chan string; var _, _ = ((<-c))`,
275                         `(<-c)`,
276                         `(string, bool)`,
277                 },
278                 {`package issue6796_e; func f(c chan string) { _, _ = ((<-c)) }`,
279                         `(<-c)`,
280                         `(string, bool)`,
281                 },
282
283                 // issue 7060
284                 {`package issue7060_a; var ( m map[int]string; x, ok = m[0] )`,
285                         `m[0]`,
286                         `(string, bool)`,
287                 },
288                 {`package issue7060_b; var ( m map[int]string; x, ok interface{} = m[0] )`,
289                         `m[0]`,
290                         `(string, bool)`,
291                 },
292                 {`package issue7060_c; func f(x interface{}, ok bool, m map[int]string) { x, ok = m[0] }`,
293                         `m[0]`,
294                         `(string, bool)`,
295                 },
296                 {`package issue7060_d; var ( ch chan string; x, ok = <-ch )`,
297                         `<-ch`,
298                         `(string, bool)`,
299                 },
300                 {`package issue7060_e; var ( ch chan string; x, ok interface{} = <-ch )`,
301                         `<-ch`,
302                         `(string, bool)`,
303                 },
304                 {`package issue7060_f; func f(x interface{}, ok bool, ch chan string) { x, ok = <-ch }`,
305                         `<-ch`,
306                         `(string, bool)`,
307                 },
308
309                 // issue 28277
310                 {`package issue28277_a; func f(...int)`,
311                         `...int`,
312                         `[]int`,
313                 },
314                 {`package issue28277_b; func f(a, b int, c ...[]struct{})`,
315                         `...[]struct{}`,
316                         `[][]struct{}`,
317                 },
318
319                 // tests for broken code that doesn't parse or type-check
320                 {brokenPkg + `x0; func _() { var x struct {f string}; x.f := 0 }`, `x.f`, `string`},
321                 {brokenPkg + `x1; func _() { var z string; type x struct {f string}; y := &x{q: z}}`, `z`, `string`},
322                 {brokenPkg + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a, f: b,}}`, `b`, `string`},
323                 {brokenPkg + `x3; var x = panic("");`, `panic`, `func(interface{})`},
324                 {`package x4; func _() { panic("") }`, `panic`, `func(interface{})`},
325                 {brokenPkg + `x5; func _() { var x map[string][...]int; x = map[string][...]int{"": {1,2,3}} }`, `x`, `map[string]invalid type`},
326
327                 // parameterized functions
328                 {genericPkg + `p0; func f[T any](T) {}; var _ = f[int]`, `f`, `func[generic_p0.T₁ interface{}](generic_p0.T₁)`},
329                 {genericPkg + `p1; func f[T any](T) {}; var _ = f[int]`, `f[int]`, `func(int)`},
330                 {genericPkg + `p2; func f[T any](T) {}; func _() { f(42) }`, `f`, `func[generic_p2.T₁ interface{}](generic_p2.T₁)`},
331                 {genericPkg + `p3; func f[T any](T) {}; func _() { f(42) }`, `f(42)`, `()`},
332
333                 // type parameters
334                 {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
335                 {genericPkg + `t1; type t[P any] int; var _ t[int]`, `t`, `generic_t1.t[generic_t1.P₁ interface{}]`},
336                 {genericPkg + `t2; type t[P interface{}] int; var _ t[int]`, `t`, `generic_t2.t[generic_t2.P₁ interface{}]`},
337                 {genericPkg + `t3; type t[P, Q interface{}] int; var _ t[int, int]`, `t`, `generic_t3.t[generic_t3.P₁, generic_t3.Q₂ interface{}]`},
338                 {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()}]`},
339
340                 // instantiated types must be sanitized
341                 {genericPkg + `g0; type t[P any] int; var x struct{ f t[int] }; var _ = x.f`, `x.f`, `generic_g0.t[int]`},
342
343                 // issue 45096
344                 {genericPkg + `issue45096; func _[T interface{ ~int8 | ~int16 | ~int32 }](x T) { _ = x < 0 }`, `0`, `generic_issue45096.T₁`},
345
346                 // issue 47895
347                 {`package p; import "unsafe"; type S struct { f int }; var s S; var _ = unsafe.Offsetof(s.f)`, `s.f`, `int`},
348         }
349
350         for _, test := range tests {
351                 info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
352                 var name string
353                 if strings.HasPrefix(test.src, brokenPkg) {
354                         var err error
355                         name, err = mayTypecheck(t, "TypesInfo", test.src, &info)
356                         if err == nil {
357                                 t.Errorf("package %s: expected to fail but passed", name)
358                                 continue
359                         }
360                 } else {
361                         name = mustTypecheck(t, "TypesInfo", test.src, &info)
362                 }
363
364                 // look for expression type
365                 var typ Type
366                 for e, tv := range info.Types {
367                         if syntax.String(e) == test.expr {
368                                 typ = tv.Type
369                                 break
370                         }
371                 }
372                 if typ == nil {
373                         t.Errorf("package %s: no type found for %s", name, test.expr)
374                         continue
375                 }
376
377                 // check that type is correct
378                 if got := typ.String(); got != test.typ {
379                         t.Errorf("package %s: got %s; want %s", name, got, test.typ)
380                 }
381         }
382 }
383
384 func TestInferredInfo(t *testing.T) {
385         var tests = []struct {
386                 src   string
387                 fun   string
388                 targs []string
389                 sig   string
390         }{
391                 {genericPkg + `p0; func f[T any](T) {}; func _() { f(42) }`,
392                         `f`,
393                         []string{`int`},
394                         `func(int)`,
395                 },
396                 {genericPkg + `p1; func f[T any](T) T { panic(0) }; func _() { f('@') }`,
397                         `f`,
398                         []string{`rune`},
399                         `func(rune) rune`,
400                 },
401                 {genericPkg + `p2; func f[T any](...T) T { panic(0) }; func _() { f(0i) }`,
402                         `f`,
403                         []string{`complex128`},
404                         `func(...complex128) complex128`,
405                 },
406                 {genericPkg + `p3; func f[A, B, C any](A, *B, []C) {}; func _() { f(1.2, new(string), []byte{}) }`,
407                         `f`,
408                         []string{`float64`, `string`, `byte`},
409                         `func(float64, *string, []byte)`,
410                 },
411                 {genericPkg + `p4; func f[A, B any](A, *B, ...[]B) {}; func _() { f(1.2, new(byte)) }`,
412                         `f`,
413                         []string{`float64`, `byte`},
414                         `func(float64, *byte, ...[]byte)`,
415                 },
416
417                 // we don't know how to translate these but we can type-check them
418                 {genericPkg + `q0; type T struct{}; func (T) m[P any](P) {}; func _(x T) { x.m(42) }`,
419                         `x.m`,
420                         []string{`int`},
421                         `func(int)`,
422                 },
423                 {genericPkg + `q1; type T struct{}; func (T) m[P any](P) P { panic(0) }; func _(x T) { x.m(42) }`,
424                         `x.m`,
425                         []string{`int`},
426                         `func(int) int`,
427                 },
428                 {genericPkg + `q2; type T struct{}; func (T) m[P any](...P) P { panic(0) }; func _(x T) { x.m(42) }`,
429                         `x.m`,
430                         []string{`int`},
431                         `func(...int) int`,
432                 },
433                 {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{}) }`,
434                         `x.m`,
435                         []string{`float64`, `string`, `byte`},
436                         `func(float64, *string, []byte)`,
437                 },
438                 {genericPkg + `q4; type T struct{}; func (T) m[A, B any](A, *B, ...[]B) {}; func _(x T) { x.m(1.2, new(byte)) }`,
439                         `x.m`,
440                         []string{`float64`, `byte`},
441                         `func(float64, *byte, ...[]byte)`,
442                 },
443
444                 {genericPkg + `r0; type T[P any] struct{}; func (_ T[P]) m[Q any](Q) {}; func _[P any](x T[P]) { x.m(42) }`,
445                         `x.m`,
446                         []string{`int`},
447                         `func(int)`,
448                 },
449                 // TODO(gri) record method type parameters in syntax.FuncType so we can check this
450                 // {genericPkg + `r1; type T interface{ m[P any](P) }; func _(x T) { x.m(4.2) }`,
451                 //      `x.m`,
452                 //      []string{`float64`},
453                 //      `func(float64)`,
454                 // },
455
456                 {genericPkg + `s1; func f[T any, P interface{~*T}](x T) {}; func _(x string) { f(x) }`,
457                         `f`,
458                         []string{`string`, `*string`},
459                         `func(x string)`,
460                 },
461                 {genericPkg + `s2; func f[T any, P interface{~*T}](x []T) {}; func _(x []int) { f(x) }`,
462                         `f`,
463                         []string{`int`, `*int`},
464                         `func(x []int)`,
465                 },
466                 {genericPkg + `s3; type C[T any] interface{~chan<- T}; func f[T any, P C[T]](x []T) {}; func _(x []int) { f(x) }`,
467                         `f`,
468                         []string{`int`, `chan<- int`},
469                         `func(x []int)`,
470                 },
471                 {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) }`,
472                         `f`,
473                         []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
474                         `func(x []int)`,
475                 },
476
477                 {genericPkg + `t1; func f[T any, P interface{~*T}]() T { panic(0) }; func _() { _ = f[string] }`,
478                         `f`,
479                         []string{`string`, `*string`},
480                         `func() string`,
481                 },
482                 {genericPkg + `t2; type C[T any] interface{~chan<- T}; func f[T any, P C[T]]() []T { return nil }; func _() { _ = f[int] }`,
483                         `f`,
484                         []string{`int`, `chan<- int`},
485                         `func() []int`,
486                 },
487                 {genericPkg + `t3; type C[T any] interface{~chan<- T}; func f[T any, P C[T], Q C[[]*P]]() []T { return nil }; func _() { _ = f[int] }`,
488                         `f`,
489                         []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
490                         `func() []int`,
491                 },
492         }
493
494         for _, test := range tests {
495                 info := Info{Inferred: make(map[syntax.Expr]Inferred)}
496                 name, err := mayTypecheck(t, "InferredInfo", test.src, &info)
497                 if err != nil {
498                         t.Errorf("package %s: %v", name, err)
499                         continue
500                 }
501
502                 // look for inferred type arguments and signature
503                 var targs *TypeList
504                 var sig *Signature
505                 for call, inf := range info.Inferred {
506                         var fun syntax.Expr
507                         switch x := call.(type) {
508                         case *syntax.CallExpr:
509                                 fun = x.Fun
510                         case *syntax.IndexExpr:
511                                 fun = x.X
512                         default:
513                                 panic(fmt.Sprintf("unexpected call expression type %T", call))
514                         }
515                         if syntax.String(fun) == test.fun {
516                                 targs = inf.TArgs
517                                 sig = inf.Sig
518                                 break
519                         }
520                 }
521                 if targs == nil {
522                         t.Errorf("package %s: no inferred information found for %s", name, test.fun)
523                         continue
524                 }
525
526                 // check that type arguments are correct
527                 if targs.Len() != len(test.targs) {
528                         t.Errorf("package %s: got %d type arguments; want %d", name, targs.Len(), len(test.targs))
529                         continue
530                 }
531                 for i := 0; i < targs.Len(); i++ {
532                         targ := targs.At(i)
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         selections := make(map[*syntax.SelectorExpr]*Selection)
1169
1170         imports := make(testImporter)
1171         conf := Config{Importer: imports}
1172         makePkg := func(path, src string) {
1173                 f, err := parseSrc(path+".go", src)
1174                 if err != nil {
1175                         t.Fatal(err)
1176                 }
1177                 pkg, err := conf.Check(path, []*syntax.File{f}, &Info{Selections: selections})
1178                 if err != nil {
1179                         t.Fatal(err)
1180                 }
1181                 imports[path] = pkg
1182         }
1183
1184         const libSrc = `
1185 package lib
1186 type T float64
1187 const C T = 3
1188 var V T
1189 func F() {}
1190 func (T) M() {}
1191 `
1192         const mainSrc = `
1193 package main
1194 import "lib"
1195
1196 type A struct {
1197         *B
1198         C
1199 }
1200
1201 type B struct {
1202         b int
1203 }
1204
1205 func (B) f(int)
1206
1207 type C struct {
1208         c int
1209 }
1210
1211 func (C) g()
1212 func (*C) h()
1213
1214 func main() {
1215         // qualified identifiers
1216         var _ lib.T
1217         _ = lib.C
1218         _ = lib.F
1219         _ = lib.V
1220         _ = lib.T.M
1221
1222         // fields
1223         _ = A{}.B
1224         _ = new(A).B
1225
1226         _ = A{}.C
1227         _ = new(A).C
1228
1229         _ = A{}.b
1230         _ = new(A).b
1231
1232         _ = A{}.c
1233         _ = new(A).c
1234
1235         // methods
1236         _ = A{}.f
1237         _ = new(A).f
1238         _ = A{}.g
1239         _ = new(A).g
1240         _ = new(A).h
1241
1242         _ = B{}.f
1243         _ = new(B).f
1244
1245         _ = C{}.g
1246         _ = new(C).g
1247         _ = new(C).h
1248
1249         // method expressions
1250         _ = A.f
1251         _ = (*A).f
1252         _ = B.f
1253         _ = (*B).f
1254 }`
1255
1256         wantOut := map[string][2]string{
1257                 "lib.T.M": {"method expr (lib.T) M(lib.T)", ".[0]"},
1258
1259                 "A{}.B":    {"field (main.A) B *main.B", ".[0]"},
1260                 "new(A).B": {"field (*main.A) B *main.B", "->[0]"},
1261                 "A{}.C":    {"field (main.A) C main.C", ".[1]"},
1262                 "new(A).C": {"field (*main.A) C main.C", "->[1]"},
1263                 "A{}.b":    {"field (main.A) b int", "->[0 0]"},
1264                 "new(A).b": {"field (*main.A) b int", "->[0 0]"},
1265                 "A{}.c":    {"field (main.A) c int", ".[1 0]"},
1266                 "new(A).c": {"field (*main.A) c int", "->[1 0]"},
1267
1268                 "A{}.f":    {"method (main.A) f(int)", "->[0 0]"},
1269                 "new(A).f": {"method (*main.A) f(int)", "->[0 0]"},
1270                 "A{}.g":    {"method (main.A) g()", ".[1 0]"},
1271                 "new(A).g": {"method (*main.A) g()", "->[1 0]"},
1272                 "new(A).h": {"method (*main.A) h()", "->[1 1]"}, // TODO(gri) should this report .[1 1] ?
1273                 "B{}.f":    {"method (main.B) f(int)", ".[0]"},
1274                 "new(B).f": {"method (*main.B) f(int)", "->[0]"},
1275                 "C{}.g":    {"method (main.C) g()", ".[0]"},
1276                 "new(C).g": {"method (*main.C) g()", "->[0]"},
1277                 "new(C).h": {"method (*main.C) h()", "->[1]"}, // TODO(gri) should this report .[1] ?
1278
1279                 "A.f":    {"method expr (main.A) f(main.A, int)", "->[0 0]"},
1280                 "(*A).f": {"method expr (*main.A) f(*main.A, int)", "->[0 0]"},
1281                 "B.f":    {"method expr (main.B) f(main.B, int)", ".[0]"},
1282                 "(*B).f": {"method expr (*main.B) f(*main.B, int)", "->[0]"},
1283         }
1284
1285         makePkg("lib", libSrc)
1286         makePkg("main", mainSrc)
1287
1288         for e, sel := range selections {
1289                 _ = sel.String() // assertion: must not panic
1290
1291                 start := indexFor(mainSrc, syntax.StartPos(e))
1292                 end := indexFor(mainSrc, syntax.EndPos(e))
1293                 segment := mainSrc[start:end] // (all SelectorExprs are in main, not lib)
1294
1295                 direct := "."
1296                 if sel.Indirect() {
1297                         direct = "->"
1298                 }
1299                 got := [2]string{
1300                         sel.String(),
1301                         fmt.Sprintf("%s%v", direct, sel.Index()),
1302                 }
1303                 want := wantOut[segment]
1304                 if want != got {
1305                         t.Errorf("%s: got %q; want %q", segment, got, want)
1306                 }
1307                 delete(wantOut, segment)
1308
1309                 // We must explicitly assert properties of the
1310                 // Signature's receiver since it doesn't participate
1311                 // in Identical() or String().
1312                 sig, _ := sel.Type().(*Signature)
1313                 if sel.Kind() == MethodVal {
1314                         got := sig.Recv().Type()
1315                         want := sel.Recv()
1316                         if !Identical(got, want) {
1317                                 t.Errorf("%s: Recv() = %s, want %s", segment, got, want)
1318                         }
1319                 } else if sig != nil && sig.Recv() != nil {
1320                         t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
1321                 }
1322         }
1323         // Assert that all wantOut entries were used exactly once.
1324         for segment := range wantOut {
1325                 t.Errorf("no syntax.Selection found with syntax %q", segment)
1326         }
1327 }
1328
1329 // indexFor returns the index into s corresponding to the position pos.
1330 func indexFor(s string, pos syntax.Pos) int {
1331         i, line := 0, 1 // string index and corresponding line
1332         target := int(pos.Line())
1333         for line < target && i < len(s) {
1334                 if s[i] == '\n' {
1335                         line++
1336                 }
1337                 i++
1338         }
1339         return i + int(pos.Col()-1) // columns are 1-based
1340 }
1341
1342 func TestIssue8518(t *testing.T) {
1343         imports := make(testImporter)
1344         conf := Config{
1345                 Error:    func(err error) { t.Log(err) }, // don't exit after first error
1346                 Importer: imports,
1347         }
1348         makePkg := func(path, src string) {
1349                 f, err := parseSrc(path, src)
1350                 if err != nil {
1351                         t.Fatal(err)
1352                 }
1353                 pkg, _ := conf.Check(path, []*syntax.File{f}, nil) // errors logged via conf.Error
1354                 imports[path] = pkg
1355         }
1356
1357         const libSrc = `
1358 package a
1359 import "missing"
1360 const C1 = foo
1361 const C2 = missing.C
1362 `
1363
1364         const mainSrc = `
1365 package main
1366 import "a"
1367 var _ = a.C1
1368 var _ = a.C2
1369 `
1370
1371         makePkg("a", libSrc)
1372         makePkg("main", mainSrc) // don't crash when type-checking this package
1373 }
1374
1375 func TestLookupFieldOrMethod(t *testing.T) {
1376         // Test cases assume a lookup of the form a.f or x.f, where a stands for an
1377         // addressable value, and x for a non-addressable value (even though a variable
1378         // for ease of test case writing).
1379         var tests = []struct {
1380                 src      string
1381                 found    bool
1382                 index    []int
1383                 indirect bool
1384         }{
1385                 // field lookups
1386                 {"var x T; type T struct{}", false, nil, false},
1387                 {"var x T; type T struct{ f int }", true, []int{0}, false},
1388                 {"var x T; type T struct{ a, b, f, c int }", true, []int{2}, false},
1389
1390                 // method lookups
1391                 {"var a T; type T struct{}; func (T) f() {}", true, []int{0}, false},
1392                 {"var a *T; type T struct{}; func (T) f() {}", true, []int{0}, true},
1393                 {"var a T; type T struct{}; func (*T) f() {}", true, []int{0}, false},
1394                 {"var a *T; type T struct{}; func (*T) f() {}", true, []int{0}, true}, // TODO(gri) should this report indirect = false?
1395
1396                 // collisions
1397                 {"type ( E1 struct{ f int }; E2 struct{ f int }; x struct{ E1; *E2 })", false, []int{1, 0}, false},
1398                 {"type ( E1 struct{ f int }; E2 struct{}; x struct{ E1; *E2 }); func (E2) f() {}", false, []int{1, 0}, false},
1399
1400                 // outside methodset
1401                 // (*T).f method exists, but value of type T is not addressable
1402                 {"var x T; type T struct{}; func (*T) f() {}", false, nil, true},
1403         }
1404
1405         for _, test := range tests {
1406                 pkg, err := pkgFor("test", "package p;"+test.src, nil)
1407                 if err != nil {
1408                         t.Errorf("%s: incorrect test case: %s", test.src, err)
1409                         continue
1410                 }
1411
1412                 obj := pkg.Scope().Lookup("a")
1413                 if obj == nil {
1414                         if obj = pkg.Scope().Lookup("x"); obj == nil {
1415                                 t.Errorf("%s: incorrect test case - no object a or x", test.src)
1416                                 continue
1417                         }
1418                 }
1419
1420                 f, index, indirect := LookupFieldOrMethod(obj.Type(), obj.Name() == "a", pkg, "f")
1421                 if (f != nil) != test.found {
1422                         if f == nil {
1423                                 t.Errorf("%s: got no object; want one", test.src)
1424                         } else {
1425                                 t.Errorf("%s: got object = %v; want none", test.src, f)
1426                         }
1427                 }
1428                 if !sameSlice(index, test.index) {
1429                         t.Errorf("%s: got index = %v; want %v", test.src, index, test.index)
1430                 }
1431                 if indirect != test.indirect {
1432                         t.Errorf("%s: got indirect = %v; want %v", test.src, indirect, test.indirect)
1433                 }
1434         }
1435 }
1436
1437 func sameSlice(a, b []int) bool {
1438         if len(a) != len(b) {
1439                 return false
1440         }
1441         for i, x := range a {
1442                 if x != b[i] {
1443                         return false
1444                 }
1445         }
1446         return true
1447 }
1448
1449 // TestScopeLookupParent ensures that (*Scope).LookupParent returns
1450 // the correct result at various positions within the source.
1451 func TestScopeLookupParent(t *testing.T) {
1452         imports := make(testImporter)
1453         conf := Config{Importer: imports}
1454         var info Info
1455         makePkg := func(path, src string) {
1456                 f, err := parseSrc(path, src)
1457                 if err != nil {
1458                         t.Fatal(err)
1459                 }
1460                 imports[path], err = conf.Check(path, []*syntax.File{f}, &info)
1461                 if err != nil {
1462                         t.Fatal(err)
1463                 }
1464         }
1465
1466         makePkg("lib", "package lib; var X int")
1467         // Each /*name=kind:line*/ comment makes the test look up the
1468         // name at that point and checks that it resolves to a decl of
1469         // the specified kind and line number.  "undef" means undefined.
1470         mainSrc := `
1471 /*lib=pkgname:5*/ /*X=var:1*/ /*Pi=const:8*/ /*T=typename:9*/ /*Y=var:10*/ /*F=func:12*/
1472 package main
1473
1474 import "lib"
1475 import . "lib"
1476
1477 const Pi = 3.1415
1478 type T struct{}
1479 var Y, _ = lib.X, X
1480
1481 func F(){
1482         const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
1483         type /*t=undef*/ t /*t=typename:14*/ *t
1484         print(Y) /*Y=var:10*/
1485         x, Y := Y, /*x=undef*/ /*Y=var:10*/ Pi /*x=var:16*/ /*Y=var:16*/ ; _ = x; _ = Y
1486         var F = /*F=func:12*/ F /*F=var:17*/ ; _ = F
1487
1488         var a []int
1489         for i, x := range /*i=undef*/ /*x=var:16*/ a /*i=var:20*/ /*x=var:20*/ { _ = i; _ = x }
1490
1491         var i interface{}
1492         switch y := i.(type) { /*y=undef*/
1493         case /*y=undef*/ int /*y=var:23*/ :
1494         case float32, /*y=undef*/ float64 /*y=var:23*/ :
1495         default /*y=var:23*/:
1496                 println(y)
1497         }
1498         /*y=undef*/
1499
1500         switch int := i.(type) {
1501         case /*int=typename:0*/ int /*int=var:31*/ :
1502                 println(int)
1503         default /*int=var:31*/ :
1504         }
1505 }
1506 /*main=undef*/
1507 `
1508
1509         info.Uses = make(map[*syntax.Name]Object)
1510         makePkg("main", mainSrc)
1511         mainScope := imports["main"].Scope()
1512
1513         rx := regexp.MustCompile(`^/\*(\w*)=([\w:]*)\*/$`)
1514
1515         base := syntax.NewFileBase("main")
1516         syntax.CommentsDo(strings.NewReader(mainSrc), func(line, col uint, text string) {
1517                 pos := syntax.MakePos(base, line, col)
1518
1519                 // Syntax errors are not comments.
1520                 if text[0] != '/' {
1521                         t.Errorf("%s: %s", pos, text)
1522                         return
1523                 }
1524
1525                 // Parse the assertion in the comment.
1526                 m := rx.FindStringSubmatch(text)
1527                 if m == nil {
1528                         t.Errorf("%s: bad comment: %s", pos, text)
1529                         return
1530                 }
1531                 name, want := m[1], m[2]
1532
1533                 // Look up the name in the innermost enclosing scope.
1534                 inner := mainScope.Innermost(pos)
1535                 if inner == nil {
1536                         t.Errorf("%s: at %s: can't find innermost scope", pos, text)
1537                         return
1538                 }
1539                 got := "undef"
1540                 if _, obj := inner.LookupParent(name, pos); obj != nil {
1541                         kind := strings.ToLower(strings.TrimPrefix(reflect.TypeOf(obj).String(), "*types2."))
1542                         got = fmt.Sprintf("%s:%d", kind, obj.Pos().Line())
1543                 }
1544                 if got != want {
1545                         t.Errorf("%s: at %s: %s resolved to %s, want %s", pos, text, name, got, want)
1546                 }
1547         })
1548
1549         // Check that for each referring identifier,
1550         // a lookup of its name on the innermost
1551         // enclosing scope returns the correct object.
1552
1553         for id, wantObj := range info.Uses {
1554                 inner := mainScope.Innermost(id.Pos())
1555                 if inner == nil {
1556                         t.Errorf("%s: can't find innermost scope enclosing %q", id.Pos(), id.Value)
1557                         continue
1558                 }
1559
1560                 // Exclude selectors and qualified identifiers---lexical
1561                 // refs only.  (Ideally, we'd see if the AST parent is a
1562                 // SelectorExpr, but that requires PathEnclosingInterval
1563                 // from golang.org/x/tools/go/ast/astutil.)
1564                 if id.Value == "X" {
1565                         continue
1566                 }
1567
1568                 _, gotObj := inner.LookupParent(id.Value, id.Pos())
1569                 if gotObj != wantObj {
1570                         t.Errorf("%s: got %v, want %v", id.Pos(), gotObj, wantObj)
1571                         continue
1572                 }
1573         }
1574 }
1575
1576 var nopos syntax.Pos
1577
1578 // newDefined creates a new defined type named T with the given underlying type.
1579 func newDefined(underlying Type) *Named {
1580         tname := NewTypeName(nopos, nil, "T", nil)
1581         return NewNamed(tname, underlying, nil)
1582 }
1583
1584 func TestConvertibleTo(t *testing.T) {
1585         for _, test := range []struct {
1586                 v, t Type
1587                 want bool
1588         }{
1589                 {Typ[Int], Typ[Int], true},
1590                 {Typ[Int], Typ[Float32], true},
1591                 {newDefined(Typ[Int]), Typ[Int], true},
1592                 {newDefined(new(Struct)), new(Struct), true},
1593                 {newDefined(Typ[Int]), new(Struct), false},
1594                 {Typ[UntypedInt], Typ[Int], true},
1595                 {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Int], 10)), true},
1596                 {NewSlice(Typ[Int]), NewArray(Typ[Int], 10), false},
1597                 {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Uint], 10)), false},
1598                 // Untyped string values are not permitted by the spec, so the below
1599                 // behavior is undefined.
1600                 {Typ[UntypedString], Typ[String], true},
1601         } {
1602                 if got := ConvertibleTo(test.v, test.t); got != test.want {
1603                         t.Errorf("ConvertibleTo(%v, %v) = %t, want %t", test.v, test.t, got, test.want)
1604                 }
1605         }
1606 }
1607
1608 func TestAssignableTo(t *testing.T) {
1609         for _, test := range []struct {
1610                 v, t Type
1611                 want bool
1612         }{
1613                 {Typ[Int], Typ[Int], true},
1614                 {Typ[Int], Typ[Float32], false},
1615                 {newDefined(Typ[Int]), Typ[Int], false},
1616                 {newDefined(new(Struct)), new(Struct), true},
1617                 {Typ[UntypedBool], Typ[Bool], true},
1618                 {Typ[UntypedString], Typ[Bool], false},
1619                 // Neither untyped string nor untyped numeric assignments arise during
1620                 // normal type checking, so the below behavior is technically undefined by
1621                 // the spec.
1622                 {Typ[UntypedString], Typ[String], true},
1623                 {Typ[UntypedInt], Typ[Int], true},
1624         } {
1625                 if got := AssignableTo(test.v, test.t); got != test.want {
1626                         t.Errorf("AssignableTo(%v, %v) = %t, want %t", test.v, test.t, got, test.want)
1627                 }
1628         }
1629 }
1630
1631 func TestIdentical_issue15173(t *testing.T) {
1632         // Identical should allow nil arguments and be symmetric.
1633         for _, test := range []struct {
1634                 x, y Type
1635                 want bool
1636         }{
1637                 {Typ[Int], Typ[Int], true},
1638                 {Typ[Int], nil, false},
1639                 {nil, Typ[Int], false},
1640                 {nil, nil, true},
1641         } {
1642                 if got := Identical(test.x, test.y); got != test.want {
1643                         t.Errorf("Identical(%v, %v) = %t", test.x, test.y, got)
1644                 }
1645         }
1646 }
1647
1648 func TestIssue15305(t *testing.T) {
1649         const src = "package p; func f() int16; var _ = f(undef)"
1650         f, err := parseSrc("issue15305.go", src)
1651         if err != nil {
1652                 t.Fatal(err)
1653         }
1654         conf := Config{
1655                 Error: func(err error) {}, // allow errors
1656         }
1657         info := &Info{
1658                 Types: make(map[syntax.Expr]TypeAndValue),
1659         }
1660         conf.Check("p", []*syntax.File{f}, info) // ignore result
1661         for e, tv := range info.Types {
1662                 if _, ok := e.(*syntax.CallExpr); ok {
1663                         if tv.Type != Typ[Int16] {
1664                                 t.Errorf("CallExpr has type %v, want int16", tv.Type)
1665                         }
1666                         return
1667                 }
1668         }
1669         t.Errorf("CallExpr has no type")
1670 }
1671
1672 // TestCompositeLitTypes verifies that Info.Types registers the correct
1673 // types for composite literal expressions and composite literal type
1674 // expressions.
1675 func TestCompositeLitTypes(t *testing.T) {
1676         for _, test := range []struct {
1677                 lit, typ string
1678         }{
1679                 {`[16]byte{}`, `[16]byte`},
1680                 {`[...]byte{}`, `[0]byte`},                // test for issue #14092
1681                 {`[...]int{1, 2, 3}`, `[3]int`},           // test for issue #14092
1682                 {`[...]int{90: 0, 98: 1, 2}`, `[100]int`}, // test for issue #14092
1683                 {`[]int{}`, `[]int`},
1684                 {`map[string]bool{"foo": true}`, `map[string]bool`},
1685                 {`struct{}{}`, `struct{}`},
1686                 {`struct{x, y int; z complex128}{}`, `struct{x int; y int; z complex128}`},
1687         } {
1688                 f, err := parseSrc(test.lit, "package p; var _ = "+test.lit)
1689                 if err != nil {
1690                         t.Fatalf("%s: %v", test.lit, err)
1691                 }
1692
1693                 info := &Info{
1694                         Types: make(map[syntax.Expr]TypeAndValue),
1695                 }
1696                 if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
1697                         t.Fatalf("%s: %v", test.lit, err)
1698                 }
1699
1700                 cmptype := func(x syntax.Expr, want string) {
1701                         tv, ok := info.Types[x]
1702                         if !ok {
1703                                 t.Errorf("%s: no Types entry found", test.lit)
1704                                 return
1705                         }
1706                         if tv.Type == nil {
1707                                 t.Errorf("%s: type is nil", test.lit)
1708                                 return
1709                         }
1710                         if got := tv.Type.String(); got != want {
1711                                 t.Errorf("%s: got %v, want %s", test.lit, got, want)
1712                         }
1713                 }
1714
1715                 // test type of composite literal expression
1716                 rhs := f.DeclList[0].(*syntax.VarDecl).Values
1717                 cmptype(rhs, test.typ)
1718
1719                 // test type of composite literal type expression
1720                 cmptype(rhs.(*syntax.CompositeLit).Type, test.typ)
1721         }
1722 }
1723
1724 // TestObjectParents verifies that objects have parent scopes or not
1725 // as specified by the Object interface.
1726 func TestObjectParents(t *testing.T) {
1727         const src = `
1728 package p
1729
1730 const C = 0
1731
1732 type T1 struct {
1733         a, b int
1734         T2
1735 }
1736
1737 type T2 interface {
1738         im1()
1739         im2()
1740 }
1741
1742 func (T1) m1() {}
1743 func (*T1) m2() {}
1744
1745 func f(x int) { y := x; print(y) }
1746 `
1747
1748         f, err := parseSrc("src", src)
1749         if err != nil {
1750                 t.Fatal(err)
1751         }
1752
1753         info := &Info{
1754                 Defs: make(map[*syntax.Name]Object),
1755         }
1756         if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
1757                 t.Fatal(err)
1758         }
1759
1760         for ident, obj := range info.Defs {
1761                 if obj == nil {
1762                         // only package names and implicit vars have a nil object
1763                         // (in this test we only need to handle the package name)
1764                         if ident.Value != "p" {
1765                                 t.Errorf("%v has nil object", ident)
1766                         }
1767                         continue
1768                 }
1769
1770                 // struct fields, type-associated and interface methods
1771                 // have no parent scope
1772                 wantParent := true
1773                 switch obj := obj.(type) {
1774                 case *Var:
1775                         if obj.IsField() {
1776                                 wantParent = false
1777                         }
1778                 case *Func:
1779                         if obj.Type().(*Signature).Recv() != nil { // method
1780                                 wantParent = false
1781                         }
1782                 }
1783
1784                 gotParent := obj.Parent() != nil
1785                 switch {
1786                 case gotParent && !wantParent:
1787                         t.Errorf("%v: want no parent, got %s", ident, obj.Parent())
1788                 case !gotParent && wantParent:
1789                         t.Errorf("%v: no parent found", ident)
1790                 }
1791         }
1792 }
1793
1794 // TestFailedImport tests that we don't get follow-on errors
1795 // elsewhere in a package due to failing to import a package.
1796 func TestFailedImport(t *testing.T) {
1797         testenv.MustHaveGoBuild(t)
1798
1799         const src = `
1800 package p
1801
1802 import foo "go/types/thisdirectorymustnotexistotherwisethistestmayfail/foo" // should only see an error here
1803
1804 const c = foo.C
1805 type T = foo.T
1806 var v T = c
1807 func f(x T) T { return foo.F(x) }
1808 `
1809         f, err := parseSrc("src", src)
1810         if err != nil {
1811                 t.Fatal(err)
1812         }
1813         files := []*syntax.File{f}
1814
1815         // type-check using all possible importers
1816         for _, compiler := range []string{"gc", "gccgo", "source"} {
1817                 errcount := 0
1818                 conf := Config{
1819                         Error: func(err error) {
1820                                 // we should only see the import error
1821                                 if errcount > 0 || !strings.Contains(err.Error(), "could not import") {
1822                                         t.Errorf("for %s importer, got unexpected error: %v", compiler, err)
1823                                 }
1824                                 errcount++
1825                         },
1826                         //Importer: importer.For(compiler, nil),
1827                 }
1828
1829                 info := &Info{
1830                         Uses: make(map[*syntax.Name]Object),
1831                 }
1832                 pkg, _ := conf.Check("p", files, info)
1833                 if pkg == nil {
1834                         t.Errorf("for %s importer, type-checking failed to return a package", compiler)
1835                         continue
1836                 }
1837
1838                 imports := pkg.Imports()
1839                 if len(imports) != 1 {
1840                         t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
1841                         continue
1842                 }
1843                 imp := imports[0]
1844                 if imp.Name() != "foo" {
1845                         t.Errorf(`for %s importer, got %q, want "foo"`, compiler, imp.Name())
1846                         continue
1847                 }
1848
1849                 // verify that all uses of foo refer to the imported package foo (imp)
1850                 for ident, obj := range info.Uses {
1851                         if ident.Value == "foo" {
1852                                 if obj, ok := obj.(*PkgName); ok {
1853                                         if obj.Imported() != imp {
1854                                                 t.Errorf("%s resolved to %v; want %v", ident.Value, obj.Imported(), imp)
1855                                         }
1856                                 } else {
1857                                         t.Errorf("%s resolved to %v; want package name", ident.Value, obj)
1858                                 }
1859                         }
1860                 }
1861         }
1862 }
1863
1864 func TestInstantiate(t *testing.T) {
1865         // eventually we like more tests but this is a start
1866         const src = genericPkg + "p; type T[P any] *T[P]"
1867         pkg, err := pkgFor(".", src, nil)
1868         if err != nil {
1869                 t.Fatal(err)
1870         }
1871
1872         // type T should have one type parameter
1873         T := pkg.Scope().Lookup("T").Type().(*Named)
1874         if n := T.TParams().Len(); n != 1 {
1875                 t.Fatalf("expected 1 type parameter; found %d", n)
1876         }
1877
1878         // instantiation should succeed (no endless recursion)
1879         // even with a nil *Checker
1880         res, err := Instantiate(nil, T, []Type{Typ[Int]}, false)
1881         if err != nil {
1882                 t.Fatal(err)
1883         }
1884
1885         // instantiated type should point to itself
1886         if p := res.Underlying().(*Pointer).Elem(); p != res {
1887                 t.Fatalf("unexpected result type: %s points to %s", res, p)
1888         }
1889 }
1890
1891 func TestInstantiateErrors(t *testing.T) {
1892         tests := []struct {
1893                 src    string // by convention, T must be the type being instantiated
1894                 targs  []Type
1895                 wantAt int // -1 indicates no error
1896         }{
1897                 {"type T[P interface{~string}] int", []Type{Typ[Int]}, 0},
1898                 {"type T[P1 interface{int}, P2 interface{~string}] int", []Type{Typ[Int], Typ[Int]}, 1},
1899                 {"type T[P1 any, P2 interface{~[]P1}] int", []Type{Typ[Int], NewSlice(Typ[String])}, 1},
1900                 {"type T[P1 interface{~[]P2}, P2 any] int", []Type{NewSlice(Typ[String]), Typ[Int]}, 0},
1901         }
1902
1903         for _, test := range tests {
1904                 src := genericPkg + "p; " + test.src
1905                 pkg, err := pkgFor(".", src, nil)
1906                 if err != nil {
1907                         t.Fatal(err)
1908                 }
1909
1910                 T := pkg.Scope().Lookup("T").Type().(*Named)
1911
1912                 _, err = Instantiate(nil, T, test.targs, true)
1913                 if err == nil {
1914                         t.Fatalf("Instantiate(%v, %v) returned nil error, want non-nil", T, test.targs)
1915                 }
1916
1917                 gotAt := err.(ArgumentError).Index()
1918                 if gotAt != test.wantAt {
1919                         t.Errorf("Instantate(%v, %v): error at index %d, want index %d", T, test.targs, gotAt, test.wantAt)
1920                 }
1921         }
1922 }
1923
1924 func TestInstanceIdentity(t *testing.T) {
1925         imports := make(testImporter)
1926         conf := Config{Importer: imports}
1927         makePkg := func(src string) {
1928                 f, err := parseSrc("", src)
1929                 if err != nil {
1930                         t.Fatal(err)
1931                 }
1932                 name := f.PkgName.Value
1933                 pkg, err := conf.Check(name, []*syntax.File{f}, nil)
1934                 if err != nil {
1935                         t.Fatal(err)
1936                 }
1937                 imports[name] = pkg
1938         }
1939         makePkg(genericPkg + `lib; type T[P any] struct{}`)
1940         makePkg(genericPkg + `a; import "generic_lib"; var A generic_lib.T[int]`)
1941         makePkg(genericPkg + `b; import "generic_lib"; var B generic_lib.T[int]`)
1942         a := imports["generic_a"].Scope().Lookup("A")
1943         b := imports["generic_b"].Scope().Lookup("B")
1944         if !Identical(a.Type(), b.Type()) {
1945                 t.Errorf("mismatching types: a.A: %s, b.B: %s", a.Type(), b.Type())
1946         }
1947 }