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