]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/cmd/compile/internal/types2/api_test.go
go/types, types2: implement Info.PkgNameOf
[gostls13.git] / src / cmd / compile / internal / types2 / api_test.go
index 80e998ebeea3a2ec4f26b6a56f8ae39171e2cbc9..a2621854bc4a1743cd2d6befeb7e5ecf03fbf92c 100644 (file)
@@ -5,61 +5,62 @@
 package types2_test
 
 import (
-       "bytes"
        "cmd/compile/internal/syntax"
        "errors"
        "fmt"
        "internal/testenv"
        "reflect"
        "regexp"
+       "sort"
        "strings"
+       "sync"
        "testing"
 
        . "cmd/compile/internal/types2"
 )
 
-// brokenPkg is a source prefix for packages that are not expected to parse
-// or type-check cleanly. They are always parsed assuming that they contain
-// generic code.
-const brokenPkg = "package broken_"
+// nopos indicates an unknown position
+var nopos syntax.Pos
 
-func parseSrc(path, src string) (*syntax.File, error) {
-       errh := func(error) {} // dummy error handler so that parsing continues in presence of errors
-       return syntax.Parse(syntax.NewFileBase(path), strings.NewReader(src), errh, nil, syntax.AllowGenerics|syntax.AllowMethodTypeParams)
+func mustParse(src string) *syntax.File {
+       f, err := syntax.Parse(syntax.NewFileBase(pkgName(src)), strings.NewReader(src), nil, nil, 0)
+       if err != nil {
+               panic(err) // so we don't need to pass *testing.T
+       }
+       return f
 }
 
-func pkgFor(path, source string, info *Info) (*Package, error) {
-       f, err := parseSrc(path, source)
-       if err != nil {
-               return nil, err
+func typecheck(src string, conf *Config, info *Info) (*Package, error) {
+       f := mustParse(src)
+       if conf == nil {
+               conf = &Config{
+                       Error:    func(err error) {}, // collect all errors
+                       Importer: defaultImporter(),
+               }
        }
-       conf := Config{Importer: defaultImporter()}
        return conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
 }
 
-func mustTypecheck(t *testing.T, path, source string, info *Info) string {
-       pkg, err := pkgFor(path, source, info)
+func mustTypecheck(src string, conf *Config, info *Info) *Package {
+       pkg, err := typecheck(src, conf, info)
        if err != nil {
-               name := path
-               if pkg != nil {
-                       name = "package " + pkg.Name()
-               }
-               t.Fatalf("%s: didn't type-check (%s)", name, err)
+               panic(err) // so we don't need to pass *testing.T
        }
-       return pkg.Name()
+       return pkg
 }
 
-func mayTypecheck(t *testing.T, path, source string, info *Info) (string, error) {
-       f, err := parseSrc(path, source)
-       if f == nil { // ignore errors unless f is nil
-               t.Fatalf("%s: unable to parse: %s", path, err)
-       }
-       conf := Config{
-               Error:    func(err error) {},
-               Importer: defaultImporter(),
+// pkgName extracts the package name from src, which must contain a package header.
+func pkgName(src string) string {
+       const kw = "package "
+       if i := strings.Index(src, kw); i >= 0 {
+               after := src[i+len(kw):]
+               n := len(after)
+               if i := strings.IndexAny(after, "\n\t ;/"); i >= 0 {
+                       n = i
+               }
+               return after[:n]
        }
-       pkg, err := conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
-       return pkg.Name(), err
+       panic("missing package header: " + src)
 }
 
 func TestValuesInfo(t *testing.T) {
@@ -137,15 +138,15 @@ func TestValuesInfo(t *testing.T) {
                {`package f6b; var _            =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
                {`package f7b; var _            = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
 
-               {`package g0; const (a = len([iota]int{}); b; c); const _ = c`, `c`, `int`, `2`}, // issue #22341
-               {`package g1; var(j int32; s int; n = 1.0<<s == j)`, `1.0`, `int32`, `1`},        // issue #48422
+               {`package g0; const (a = len([iota]int{}); b; c); const _ = c`, `c`, `int`, `2`}, // go.dev/issue/22341
+               {`package g1; var(j int32; s int; n = 1.0<<s == j)`, `1.0`, `int32`, `1`},        // go.dev/issue/48422
        }
 
        for _, test := range tests {
                info := Info{
                        Types: make(map[syntax.Expr]TypeAndValue),
                }
-               name := mustTypecheck(t, "ValuesInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // look for expression
                var expr syntax.Expr
@@ -181,6 +182,9 @@ func TestValuesInfo(t *testing.T) {
 }
 
 func TestTypesInfo(t *testing.T) {
+       // Test sources that are not expected to typecheck must start with the broken prefix.
+       const brokenPkg = "package broken_"
+
        var tests = []struct {
                src  string
                expr string // expression
@@ -252,7 +256,7 @@ func TestTypesInfo(t *testing.T) {
                        `(string, bool)`,
                },
 
-               // issue 6796
+               // go.dev/issue/6796
                {`package issue6796_a; var x interface{}; var _, _ = (x.(int))`,
                        `x.(int)`,
                        `(int, bool)`,
@@ -274,7 +278,7 @@ func TestTypesInfo(t *testing.T) {
                        `(string, bool)`,
                },
 
-               // issue 7060
+               // go.dev/issue/7060
                {`package issue7060_a; var ( m map[int]string; x, ok = m[0] )`,
                        `m[0]`,
                        `(string, bool)`,
@@ -300,7 +304,7 @@ func TestTypesInfo(t *testing.T) {
                        `(string, bool)`,
                },
 
-               // issue 28277
+               // go.dev/issue/28277
                {`package issue28277_a; func f(...int)`,
                        `...int`,
                        `[]int`,
@@ -310,7 +314,19 @@ func TestTypesInfo(t *testing.T) {
                        `[][]struct{}`,
                },
 
-               // tests for broken code that doesn't parse or type-check
+               // go.dev/issue/47243
+               {`package issue47243_a; var x int32; var _ = x << 3`, `3`, `untyped int`},
+               {`package issue47243_b; var x int32; var _ = x << 3.`, `3.`, `untyped float`},
+               {`package issue47243_c; var x int32; var _ = 1 << x`, `1 << x`, `int`},
+               {`package issue47243_d; var x int32; var _ = 1 << x`, `1`, `int`},
+               {`package issue47243_e; var x int32; var _ = 1 << 2`, `1`, `untyped int`},
+               {`package issue47243_f; var x int32; var _ = 1 << 2`, `2`, `untyped int`},
+               {`package issue47243_g; var x int32; var _ = int(1) << 2`, `2`, `untyped int`},
+               {`package issue47243_h; var x int32; var _ = 1 << (2 << x)`, `1`, `int`},
+               {`package issue47243_i; var x int32; var _ = 1 << (2 << x)`, `(2 << x)`, `untyped int`},
+               {`package issue47243_j; var x int32; var _ = 1 << (2 << x)`, `2`, `untyped int`},
+
+               // tests for broken code that doesn't type-check
                {brokenPkg + `x0; func _() { var x struct {f string}; x.f := 0 }`, `x.f`, `string`},
                {brokenPkg + `x1; func _() { var z string; type x struct {f string}; y := &x{q: z}}`, `z`, `string`},
                {brokenPkg + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a, f: b,}}`, `b`, `string`},
@@ -336,50 +352,72 @@ func TestTypesInfo(t *testing.T) {
                // instantiated types must be sanitized
                {`package g0; type t[P any] int; var x struct{ f t[int] }; var _ = x.f`, `x.f`, `g0.t[int]`},
 
-               // issue 45096
+               // go.dev/issue/45096
                {`package issue45096; func _[T interface{ ~int8 | ~int16 | ~int32 }](x T) { _ = x < 0 }`, `0`, `T`},
 
-               // issue 47895
+               // go.dev/issue/47895
                {`package p; import "unsafe"; type S struct { f int }; var s S; var _ = unsafe.Offsetof(s.f)`, `s.f`, `int`},
 
-               // issue 50093
+               // go.dev/issue/50093
                {`package u0a; func _[_ interface{int}]() {}`, `int`, `int`},
                {`package u1a; func _[_ interface{~int}]() {}`, `~int`, `~int`},
-               {`package u2a; func _[_ interface{int|string}]() {}`, `int | string`, `int|string`},
-               {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `int | string | ~bool`, `int|string|~bool`},
-               {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `int | string`, `int|string`},
-               {`package u3a; func _[_ interface{int|string|~bool}]() {}`, `~bool`, `~bool`},
-               {`package u3a; func _[_ interface{int|string|~float64|~bool}]() {}`, `int | string | ~float64`, `int|string|~float64`},
+               {`package u2a; func _[_ interface{int | string}]() {}`, `int | string`, `int | string`},
+               {`package u3a; func _[_ interface{int | string | ~bool}]() {}`, `int | string | ~bool`, `int | string | ~bool`},
+               {`package u3a; func _[_ interface{int | string | ~bool}]() {}`, `int | string`, `int | string`},
+               {`package u3a; func _[_ interface{int | string | ~bool}]() {}`, `~bool`, `~bool`},
+               {`package u3a; func _[_ interface{int | string | ~float64|~bool}]() {}`, `int | string | ~float64`, `int | string | ~float64`},
 
                {`package u0b; func _[_ int]() {}`, `int`, `int`},
                {`package u1b; func _[_ ~int]() {}`, `~int`, `~int`},
-               {`package u2b; func _[_ int|string]() {}`, `int | string`, `int|string`},
-               {`package u3b; func _[_ int|string|~bool]() {}`, `int | string | ~bool`, `int|string|~bool`},
-               {`package u3b; func _[_ int|string|~bool]() {}`, `int | string`, `int|string`},
-               {`package u3b; func _[_ int|string|~bool]() {}`, `~bool`, `~bool`},
-               {`package u3b; func _[_ int|string|~float64|~bool]() {}`, `int | string | ~float64`, `int|string|~float64`},
+               {`package u2b; func _[_ int | string]() {}`, `int | string`, `int | string`},
+               {`package u3b; func _[_ int | string | ~bool]() {}`, `int | string | ~bool`, `int | string | ~bool`},
+               {`package u3b; func _[_ int | string | ~bool]() {}`, `int | string`, `int | string`},
+               {`package u3b; func _[_ int | string | ~bool]() {}`, `~bool`, `~bool`},
+               {`package u3b; func _[_ int | string | ~float64|~bool]() {}`, `int | string | ~float64`, `int | string | ~float64`},
 
                {`package u0c; type _ interface{int}`, `int`, `int`},
                {`package u1c; type _ interface{~int}`, `~int`, `~int`},
-               {`package u2c; type _ interface{int|string}`, `int | string`, `int|string`},
-               {`package u3c; type _ interface{int|string|~bool}`, `int | string | ~bool`, `int|string|~bool`},
-               {`package u3c; type _ interface{int|string|~bool}`, `int | string`, `int|string`},
-               {`package u3c; type _ interface{int|string|~bool}`, `~bool`, `~bool`},
-               {`package u3c; type _ interface{int|string|~float64|~bool}`, `int | string | ~float64`, `int|string|~float64`},
+               {`package u2c; type _ interface{int | string}`, `int | string`, `int | string`},
+               {`package u3c; type _ interface{int | string | ~bool}`, `int | string | ~bool`, `int | string | ~bool`},
+               {`package u3c; type _ interface{int | string | ~bool}`, `int | string`, `int | string`},
+               {`package u3c; type _ interface{int | string | ~bool}`, `~bool`, `~bool`},
+               {`package u3c; type _ interface{int | string | ~float64|~bool}`, `int | string | ~float64`, `int | string | ~float64`},
+
+               // reverse type inference
+               {`package r1; var _ func(int) = g; func g[P any](P) {}`, `g`, `func(int)`},
+               {`package r2; var _ func(int) = g[int]; func g[P any](P) {}`, `g`, `func[P any](P)`}, // go.dev/issues/60212
+               {`package r3; var _ func(int) = g[int]; func g[P any](P) {}`, `g[int]`, `func(int)`},
+               {`package r4; var _ func(int, string) = g; func g[P, Q any](P, Q) {}`, `g`, `func(int, string)`},
+               {`package r5; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
+               {`package r6; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g[int]`, `func(int, string)`},
+
+               {`package s1; func _() { f(g) }; func f(func(int)) {}; func g[P any](P) {}`, `g`, `func(int)`},
+               {`package s2; func _() { f(g[int]) }; func f(func(int)) {}; func g[P any](P) {}`, `g`, `func[P any](P)`}, // go.dev/issues/60212
+               {`package s3; func _() { f(g[int]) }; func f(func(int)) {}; func g[P any](P) {}`, `g[int]`, `func(int)`},
+               {`package s4; func _() { f(g) }; func f(func(int, string)) {}; func g[P, Q any](P, Q) {}`, `g`, `func(int, string)`},
+               {`package s5; func _() { f(g[int]) }; func f(func(int, string)) {}; func g[P, Q any](P, Q) {}`, `g`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
+               {`package s6; func _() { f(g[int]) }; func f(func(int, string)) {}; func g[P, Q any](P, Q) {}`, `g[int]`, `func(int, string)`},
+
+               {`package s7; func _() { f(g, h) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `g`, `func(int, int)`},
+               {`package s8; func _() { f(g, h) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h`, `func(int, string)`},
+               {`package s9; func _() { f(g, h[int]) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
+               {`package s10; func _() { f(g, h[int]) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h[int]`, `func(int, string)`},
        }
 
        for _, test := range tests {
                info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
                var name string
                if strings.HasPrefix(test.src, brokenPkg) {
-                       var err error
-                       name, err = mayTypecheck(t, "TypesInfo", test.src, &info)
+                       pkg, err := typecheck(test.src, nil, &info)
                        if err == nil {
-                               t.Errorf("package %s: expected to fail but passed", name)
+                               t.Errorf("package %s: expected to fail but passed", pkg.Name())
                                continue
                        }
+                       if pkg != nil {
+                               name = pkg.Name()
+                       }
                } else {
-                       name = mustTypecheck(t, "TypesInfo", test.src, &info)
+                       name = mustTypecheck(test.src, nil, &info).Name()
                }
 
                // look for expression type
@@ -397,175 +435,196 @@ func TestTypesInfo(t *testing.T) {
 
                // check that type is correct
                if got := typ.String(); got != test.typ {
-                       t.Errorf("package %s: got %s; want %s", name, got, test.typ)
+                       t.Errorf("package %s: expr = %s: got %s; want %s", name, test.expr, got, test.typ)
                }
        }
 }
 
 func TestInstanceInfo(t *testing.T) {
-       var tests = []struct {
-               src   string
+       const lib = `package lib
+
+func F[P any](P) {}
+
+type T[P any] []P
+`
+
+       type testInst struct {
                name  string
                targs []string
                typ   string
+       }
+
+       var tests = []struct {
+               src       string
+               instances []testInst // recorded instances in source order
        }{
                {`package p0; func f[T any](T) {}; func _() { f(42) }`,
-                       `f`,
-                       []string{`int`},
-                       `func(int)`,
+                       []testInst{{`f`, []string{`int`}, `func(int)`}},
                },
                {`package p1; func f[T any](T) T { panic(0) }; func _() { f('@') }`,
-                       `f`,
-                       []string{`rune`},
-                       `func(rune) rune`,
+                       []testInst{{`f`, []string{`rune`}, `func(rune) rune`}},
                },
                {`package p2; func f[T any](...T) T { panic(0) }; func _() { f(0i) }`,
-                       `f`,
-                       []string{`complex128`},
-                       `func(...complex128) complex128`,
+                       []testInst{{`f`, []string{`complex128`}, `func(...complex128) complex128`}},
                },
                {`package p3; func f[A, B, C any](A, *B, []C) {}; func _() { f(1.2, new(string), []byte{}) }`,
-                       `f`,
-                       []string{`float64`, `string`, `byte`},
-                       `func(float64, *string, []byte)`,
+                       []testInst{{`f`, []string{`float64`, `string`, `byte`}, `func(float64, *string, []byte)`}},
                },
                {`package p4; func f[A, B any](A, *B, ...[]B) {}; func _() { f(1.2, new(byte)) }`,
-                       `f`,
-                       []string{`float64`, `byte`},
-                       `func(float64, *byte, ...[]byte)`,
+                       []testInst{{`f`, []string{`float64`, `byte`}, `func(float64, *byte, ...[]byte)`}},
                },
 
-               // we don't know how to translate these but we can type-check them
-               {`package q0; type T struct{}; func (T) m[P any](P) {}; func _(x T) { x.m(42) }`,
-                       `m`,
-                       []string{`int`},
-                       `func(int)`,
-               },
-               {`package q1; type T struct{}; func (T) m[P any](P) P { panic(0) }; func _(x T) { x.m(42) }`,
-                       `m`,
-                       []string{`int`},
-                       `func(int) int`,
+               {`package s1; func f[T any, P interface{*T}](x T) {}; func _(x string) { f(x) }`,
+                       []testInst{{`f`, []string{`string`, `*string`}, `func(x string)`}},
                },
-               {`package q2; type T struct{}; func (T) m[P any](...P) P { panic(0) }; func _(x T) { x.m(42) }`,
-                       `m`,
-                       []string{`int`},
-                       `func(...int) int`,
+               {`package s2; func f[T any, P interface{*T}](x []T) {}; func _(x []int) { f(x) }`,
+                       []testInst{{`f`, []string{`int`, `*int`}, `func(x []int)`}},
                },
-               {`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{}) }`,
-                       `m`,
-                       []string{`float64`, `string`, `byte`},
-                       `func(float64, *string, []byte)`,
+               {`package s3; type C[T any] interface{chan<- T}; func f[T any, P C[T]](x []T) {}; func _(x []int) { f(x) }`,
+                       []testInst{
+                               {`C`, []string{`T`}, `interface{chan<- T}`},
+                               {`f`, []string{`int`, `chan<- int`}, `func(x []int)`},
+                       },
                },
-               {`package q4; type T struct{}; func (T) m[A, B any](A, *B, ...[]B) {}; func _(x T) { x.m(1.2, new(byte)) }`,
-                       `m`,
-                       []string{`float64`, `byte`},
-                       `func(float64, *byte, ...[]byte)`,
+               {`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) }`,
+                       []testInst{
+                               {`C`, []string{`T`}, `interface{chan<- T}`},
+                               {`C`, []string{`[]*P`}, `interface{chan<- []*P}`},
+                               {`f`, []string{`int`, `chan<- int`, `chan<- []*chan<- int`}, `func(x []int)`},
+                       },
                },
 
-               {`package r0; type T[P any] struct{}; func (_ T[P]) m[Q any](Q) {}; func _[P any](x T[P]) { x.m(42) }`,
-                       `m`,
-                       []string{`int`},
-                       `func(int)`,
+               {`package t1; func f[T any, P interface{*T}]() T { panic(0) }; func _() { _ = f[string] }`,
+                       []testInst{{`f`, []string{`string`, `*string`}, `func() string`}},
                },
-               // TODO(gri) record method type parameters in syntax.FuncType so we can check this
-               // {`package r1; type T interface{ m[P any](P) }; func _(x T) { x.m(4.2) }`,
-               //      `x.m`,
-               //      []string{`float64`},
-               //      `func(float64)`,
-               // },
-
-               {`package s1; func f[T any, P interface{~*T}](x T) {}; func _(x string) { f(x) }`,
-                       `f`,
-                       []string{`string`, `*string`},
-                       `func(x string)`,
+               {`package t2; func f[T any, P interface{*T}]() T { panic(0) }; func _() { _ = (f[string]) }`,
+                       []testInst{{`f`, []string{`string`, `*string`}, `func() string`}},
                },
-               {`package s2; func f[T any, P interface{~*T}](x []T) {}; func _(x []int) { f(x) }`,
-                       `f`,
-                       []string{`int`, `*int`},
-                       `func(x []int)`,
+               {`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] }`,
+                       []testInst{
+                               {`C`, []string{`T`}, `interface{chan<- T}`},
+                               {`C`, []string{`[]*P`}, `interface{chan<- []*P}`},
+                               {`f`, []string{`int`, `chan<- int`, `chan<- []*chan<- int`}, `func() []int`},
+                       },
                },
-               {`package s3; type C[T any] interface{~chan<- T}; func f[T any, P C[T]](x []T) {}; func _(x []int) { f(x) }`,
-                       `f`,
-                       []string{`int`, `chan<- int`},
-                       `func(x []int)`,
+               {`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]) }`,
+                       []testInst{
+                               {`C`, []string{`T`}, `interface{chan<- T}`},
+                               {`C`, []string{`[]*P`}, `interface{chan<- []*P}`},
+                               {`f`, []string{`int`, `chan<- int`, `chan<- []*chan<- int`}, `func() []int`},
+                       },
                },
-               {`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) }`,
-                       `f`,
-                       []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
-                       `func(x []int)`,
+               {`package i0; import "lib"; func _() { lib.F(42) }`,
+                       []testInst{{`F`, []string{`int`}, `func(int)`}},
                },
 
-               {`package t1; func f[T any, P interface{~*T}]() T { panic(0) }; func _() { _ = f[string] }`,
-                       `f`,
-                       []string{`string`, `*string`},
-                       `func() string`,
-               },
-               {`package t2; func f[T any, P interface{~*T}]() T { panic(0) }; func _() { _ = (f[string]) }`,
-                       `f`,
-                       []string{`string`, `*string`},
-                       `func() string`,
-               },
-               {`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] }`,
-                       `f`,
-                       []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
-                       `func() []int`,
-               },
-               {`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] }`,
-                       `f`,
-                       []string{`int`, `chan<- int`, `chan<- []*chan<- int`},
-                       `func() []int`,
+               {`package duplfunc0; func f[T any](T) {}; func _() { f(42); f("foo"); f[int](3) }`,
+                       []testInst{
+                               {`f`, []string{`int`}, `func(int)`},
+                               {`f`, []string{`string`}, `func(string)`},
+                               {`f`, []string{`int`}, `func(int)`},
+                       },
                },
-               {`package i0; import lib "generic_lib"; func _() { lib.F(42) }`,
-                       `F`,
-                       []string{`int`},
-                       `func(int)`,
+               {`package duplfunc1; import "lib"; func _() { lib.F(42); lib.F("foo"); lib.F(3) }`,
+                       []testInst{
+                               {`F`, []string{`int`}, `func(int)`},
+                               {`F`, []string{`string`}, `func(string)`},
+                               {`F`, []string{`int`}, `func(int)`},
+                       },
                },
+
                {`package type0; type T[P interface{~int}] struct{ x P }; var _ T[int]`,
-                       `T`,
-                       []string{`int`},
-                       `struct{x int}`,
+                       []testInst{{`T`, []string{`int`}, `struct{x int}`}},
                },
                {`package type1; type T[P interface{~int}] struct{ x P }; var _ (T[int])`,
-                       `T`,
-                       []string{`int`},
-                       `struct{x int}`,
+                       []testInst{{`T`, []string{`int`}, `struct{x int}`}},
                },
                {`package type2; type T[P interface{~int}] struct{ x P }; var _ T[(int)]`,
-                       `T`,
-                       []string{`int`},
-                       `struct{x int}`,
+                       []testInst{{`T`, []string{`int`}, `struct{x int}`}},
                },
                {`package type3; type T[P1 interface{~[]P2}, P2 any] struct{ x P1; y P2 }; var _ T[[]int, int]`,
-                       `T`,
-                       []string{`[]int`, `int`},
-                       `struct{x []int; y int}`,
+                       []testInst{{`T`, []string{`[]int`, `int`}, `struct{x []int; y int}`}},
                },
-               {`package type4; import lib "generic_lib"; var _ lib.T[int]`,
-                       `T`,
-                       []string{`int`},
-                       `[]int`,
+               {`package type4; import "lib"; var _ lib.T[int]`,
+                       []testInst{{`T`, []string{`int`}, `[]int`}},
                },
-       }
-
-       for _, test := range tests {
-               const lib = `package generic_lib
 
-func F[P any](P) {}
+               {`package dupltype0; type T[P interface{~int}] struct{ x P }; var x T[int]; var y T[int]`,
+                       []testInst{
+                               {`T`, []string{`int`}, `struct{x int}`},
+                               {`T`, []string{`int`}, `struct{x int}`},
+                       },
+               },
+               {`package dupltype1; type T[P ~int] struct{ x P }; func (r *T[Q]) add(z T[Q]) { r.x += z.x }`,
+                       []testInst{
+                               {`T`, []string{`Q`}, `struct{x Q}`},
+                               {`T`, []string{`Q`}, `struct{x Q}`},
+                       },
+               },
+               {`package dupltype1; import "lib"; var x lib.T[int]; var y lib.T[int]; var z lib.T[string]`,
+                       []testInst{
+                               {`T`, []string{`int`}, `[]int`},
+                               {`T`, []string{`int`}, `[]int`},
+                               {`T`, []string{`string`}, `[]string`},
+                       },
+               },
+               {`package issue51803; func foo[T any](T) {}; func _() { foo[int]( /* leave arg away on purpose */ ) }`,
+                       []testInst{{`foo`, []string{`int`}, `func(int)`}},
+               },
 
-type T[P any] []P
-`
+               // reverse type inference
+               {`package reverse1a; var f func(int) = g; func g[P any](P) {}`,
+                       []testInst{{`g`, []string{`int`}, `func(int)`}},
+               },
+               {`package reverse1b; func f(func(int)) {}; func g[P any](P) {}; func _() { f(g) }`,
+                       []testInst{{`g`, []string{`int`}, `func(int)`}},
+               },
+               {`package reverse2a; var f func(int, string) = g; func g[P, Q any](P, Q) {}`,
+                       []testInst{{`g`, []string{`int`, `string`}, `func(int, string)`}},
+               },
+               {`package reverse2b; func f(func(int, string)) {}; func g[P, Q any](P, Q) {}; func _() { f(g) }`,
+                       []testInst{{`g`, []string{`int`, `string`}, `func(int, string)`}},
+               },
+               {`package reverse2c; func f(func(int, string)) {}; func g[P, Q any](P, Q) {}; func _() { f(g[int]) }`,
+                       []testInst{{`g`, []string{`int`, `string`}, `func(int, string)`}},
+               },
+               // reverse3a not possible (cannot assign to generic function outside of argument passing)
+               {`package reverse3b; func f[R any](func(int) R) {}; func g[P any](P) string { return "" }; func _() { f(g) }`,
+                       []testInst{
+                               {`f`, []string{`string`}, `func(func(int) string)`},
+                               {`g`, []string{`int`}, `func(int) string`},
+                       },
+               },
+               {`package reverse4a; var _, _ func([]int, *float32) = g, h; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}`,
+                       []testInst{
+                               {`g`, []string{`int`, `float32`}, `func([]int, *float32)`},
+                               {`h`, []string{`int`}, `func([]int, *float32)`},
+                       },
+               },
+               {`package reverse4b; func f(_, _ func([]int, *float32)) {}; func g[P, Q any]([]P, *Q) {}; func h[R any]([]R, *float32) {}; func _() { f(g, h) }`,
+                       []testInst{
+                               {`g`, []string{`int`, `float32`}, `func([]int, *float32)`},
+                               {`h`, []string{`int`}, `func([]int, *float32)`},
+                       },
+               },
+               {`package issue59956; func f(func(int), func(string), func(bool)) {}; func g[P any](P) {}; func _() { f(g, g, g) }`,
+                       []testInst{
+                               {`g`, []string{`int`}, `func(int)`},
+                               {`g`, []string{`string`}, `func(string)`},
+                               {`g`, []string{`bool`}, `func(bool)`},
+                       },
+               },
+       }
 
+       for _, test := range tests {
                imports := make(testImporter)
                conf := Config{Importer: imports}
-               instances := make(map[*syntax.Name]Instance)
-               uses := make(map[*syntax.Name]Object)
+               instMap := make(map[*syntax.Name]Instance)
+               useMap := make(map[*syntax.Name]Object)
                makePkg := func(src string) *Package {
-                       f, err := parseSrc("p.go", src)
-                       if err != nil {
-                               t.Fatal(err)
-                       }
-                       pkg, err := conf.Check("", []*syntax.File{f}, &Info{Instances: instances, Uses: uses})
-                       if err != nil {
+                       pkg, err := typecheck(src, &conf, &Info{Instances: instMap, Uses: useMap})
+                       // allow error for issue51803
+                       if err != nil && (pkg == nil || pkg.Name() != "issue51803") {
                                t.Fatal(err)
                        }
                        imports[pkg.Name()] = pkg
@@ -574,58 +633,70 @@ type T[P any] []P
                makePkg(lib)
                pkg := makePkg(test.src)
 
-               // look for instance information
-               var targs []Type
-               var typ Type
-               for ident, inst := range instances {
-                       if syntax.String(ident) == test.name {
-                               for i := 0; i < inst.TypeArgs.Len(); i++ {
-                                       targs = append(targs, inst.TypeArgs.At(i))
+               t.Run(pkg.Name(), func(t *testing.T) {
+                       // Sort instances in source order for stability.
+                       instances := sortedInstances(instMap)
+                       if got, want := len(instances), len(test.instances); got != want {
+                               t.Fatalf("got %d instances, want %d", got, want)
+                       }
+
+                       // Pairwise compare with the expected instances.
+                       for ii, inst := range instances {
+                               var targs []Type
+                               for i := 0; i < inst.Inst.TypeArgs.Len(); i++ {
+                                       targs = append(targs, inst.Inst.TypeArgs.At(i))
+                               }
+                               typ := inst.Inst.Type
+
+                               testInst := test.instances[ii]
+                               if got := inst.Name.Value; got != testInst.name {
+                                       t.Fatalf("got name %s, want %s", got, testInst.name)
+                               }
+
+                               if len(targs) != len(testInst.targs) {
+                                       t.Fatalf("got %d type arguments; want %d", len(targs), len(testInst.targs))
+                               }
+                               for i, targ := range targs {
+                                       if got := targ.String(); got != testInst.targs[i] {
+                                               t.Errorf("type argument %d: got %s; want %s", i, got, testInst.targs[i])
+                                       }
+                               }
+                               if got := typ.Underlying().String(); got != testInst.typ {
+                                       t.Errorf("package %s: got %s; want %s", pkg.Name(), got, testInst.typ)
                                }
-                               typ = inst.Type
 
-                               // Check that we can find the corresponding parameterized type.
-                               ptype := uses[ident].Type()
+                               // Verify the invariant that re-instantiating the corresponding generic
+                               // type with TypeArgs results in an identical instance.
+                               ptype := useMap[inst.Name].Type()
                                lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
                                if lister == nil || lister.TypeParams().Len() == 0 {
-                                       t.Errorf("package %s: info.Types[%v] = %v, want parameterized type", pkg.Name(), ident, ptype)
-                                       continue
+                                       t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Name, ptype)
                                }
-
-                               // Verify the invariant that re-instantiating the generic type with
-                               // TypeArgs results in an equivalent type.
                                inst2, err := Instantiate(nil, ptype, targs, true)
                                if err != nil {
                                        t.Errorf("Instantiate(%v, %v) failed: %v", ptype, targs, err)
                                }
-                               if !Identical(inst.Type, inst2) {
-                                       t.Errorf("%v and %v are not identical", inst.Type, inst2)
+                               if !Identical(inst.Inst.Type, inst2) {
+                                       t.Errorf("%v and %v are not identical", inst.Inst.Type, inst2)
                                }
-                               break
                        }
-               }
-               if targs == nil {
-                       t.Errorf("package %s: no instance information found for %s", pkg.Name(), test.name)
-                       continue
-               }
+               })
+       }
+}
 
-               // check that type arguments are correct
-               if len(targs) != len(test.targs) {
-                       t.Errorf("package %s: got %d type arguments; want %d", pkg.Name(), len(targs), len(test.targs))
-                       continue
-               }
-               for i, targ := range targs {
-                       if got := targ.String(); got != test.targs[i] {
-                               t.Errorf("package %s, %d. type argument: got %s; want %s", pkg.Name(), i, got, test.targs[i])
-                               continue
-                       }
-               }
+type recordedInstance struct {
+       Name *syntax.Name
+       Inst Instance
+}
 
-               // check that the types match
-               if got := typ.Underlying().String(); got != test.typ {
-                       t.Errorf("package %s: got %s; want %s", pkg.Name(), got, test.typ)
-               }
+func sortedInstances(m map[*syntax.Name]Instance) (instances []recordedInstance) {
+       for id, inst := range m {
+               instances = append(instances, recordedInstance{id, inst})
        }
+       sort.Slice(instances, func(i, j int) bool {
+               return CmpPos(instances[i].Name.Pos(), instances[j].Name.Pos()) < 0
+       })
+       return instances
 }
 
 func TestDefsInfo(t *testing.T) {
@@ -651,7 +722,7 @@ func TestDefsInfo(t *testing.T) {
                info := Info{
                        Defs: make(map[*syntax.Name]Object),
                }
-               name := mustTypecheck(t, "DefsInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // find object
                var def Object
@@ -716,7 +787,7 @@ func TestUsesInfo(t *testing.T) {
                info := Info{
                        Uses: make(map[*syntax.Name]Object),
                }
-               name := mustTypecheck(t, "UsesInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // find object
                var use Object
@@ -748,10 +819,7 @@ func (r N[B]) m() { r.m(); r.n() }
 
 func (r *N[C]) n() {  }
 `
-       f, err := parseSrc("p.go", src)
-       if err != nil {
-               t.Fatal(err)
-       }
+       f := mustParse(src)
        info := Info{
                Defs:       make(map[*syntax.Name]Object),
                Uses:       make(map[*syntax.Name]Object),
@@ -859,7 +927,7 @@ func TestImplicitsInfo(t *testing.T) {
                info := Info{
                        Implicits: make(map[syntax.Node]Object),
                }
-               name := mustTypecheck(t, "ImplicitsInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // the test cases expect at most one Implicits entry
                if len(info.Implicits) > 1 {
@@ -890,8 +958,82 @@ func TestImplicitsInfo(t *testing.T) {
        }
 }
 
+func TestPkgNameOf(t *testing.T) {
+       testenv.MustHaveGoBuild(t)
+
+       const src = `
+package p
+
+import (
+       . "os"
+       _ "io"
+       "math"
+       "path/filepath"
+       snort "sort"
+)
+
+// avoid imported and not used errors
+var (
+       _ = Open // os.Open
+       _ = math.Sin
+       _ = filepath.Abs
+       _ = snort.Ints
+)
+`
+
+       var tests = []struct {
+               path string // path string enclosed in "'s
+               want string
+       }{
+               {`"os"`, "."},
+               {`"io"`, "_"},
+               {`"math"`, "math"},
+               {`"path/filepath"`, "filepath"},
+               {`"sort"`, "snort"},
+       }
+
+       f := mustParse(src)
+       info := Info{
+               Defs:      make(map[*syntax.Name]Object),
+               Implicits: make(map[syntax.Node]Object),
+       }
+       var conf Config
+       conf.Importer = defaultImporter()
+       _, err := conf.Check("p", []*syntax.File{f}, &info)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       // map import paths to importDecl
+       imports := make(map[string]*syntax.ImportDecl)
+       for _, d := range f.DeclList {
+               if imp, _ := d.(*syntax.ImportDecl); imp != nil {
+                       imports[imp.Path.Value] = imp
+               }
+       }
+
+       for _, test := range tests {
+               imp := imports[test.path]
+               if imp == nil {
+                       t.Fatalf("invalid test case: import path %s not found", test.path)
+               }
+               got := info.PkgNameOf(imp)
+               if got == nil {
+                       t.Fatalf("import %s: package name not found", test.path)
+               }
+               if got.Name() != test.want {
+                       t.Errorf("import %s: got %s; want %s", test.path, got.Name(), test.want)
+               }
+       }
+
+       // test non-existing importDecl
+       if got := info.PkgNameOf(new(syntax.ImportDecl)); got != nil {
+               t.Errorf("got %s for non-existing import declaration", got.Name())
+       }
+}
+
 func predString(tv TypeAndValue) string {
-       var buf bytes.Buffer
+       var buf strings.Builder
        pred := func(b bool, s string) {
                if b {
                        if buf.Len() > 0 {
@@ -987,7 +1129,7 @@ func TestPredicatesInfo(t *testing.T) {
 
        for _, test := range tests {
                info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
-               name := mustTypecheck(t, "PredicatesInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // look for expression predicates
                got := "<missing>"
@@ -1079,7 +1221,7 @@ func TestScopesInfo(t *testing.T) {
 
        for _, test := range tests {
                info := Info{Scopes: make(map[syntax.Node]*Scope)}
-               name := mustTypecheck(t, "ScopesInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // number of scopes must match
                if len(info.Scopes) != len(test.scopes) {
@@ -1190,7 +1332,7 @@ func TestInitOrderInfo(t *testing.T) {
                }`, []string{
                        "d = 3", "b = f()", "c = f()", "a = c + b",
                }},
-               // test case for issue 7131
+               // test case for go.dev/issue/7131
                {`package main
 
                var counter int
@@ -1205,7 +1347,7 @@ func TestInitOrderInfo(t *testing.T) {
                `, []string{
                        "a = next()", "b = next()", "c = next()", "d = next()", "e = next()", "f = next()", "_ = makeOrder()",
                }},
-               // test case for issue 10709
+               // test case for go.dev/issue/10709
                {`package p13
 
                var (
@@ -1225,7 +1367,7 @@ func TestInitOrderInfo(t *testing.T) {
                }`, []string{
                        "t = makeT(0)", "v = t.m()",
                }},
-               // test case for issue 10709: same as test before, but variable decls swapped
+               // test case for go.dev/issue/10709: same as test before, but variable decls swapped
                {`package p14
 
                var (
@@ -1245,7 +1387,7 @@ func TestInitOrderInfo(t *testing.T) {
                }`, []string{
                        "t = makeT(0)", "v = t.m()",
                }},
-               // another candidate possibly causing problems with issue 10709
+               // another candidate possibly causing problems with go.dev/issue/10709
                {`package p15
 
                var y1 = f1()
@@ -1267,7 +1409,7 @@ func TestInitOrderInfo(t *testing.T) {
 
        for _, test := range tests {
                info := Info{}
-               name := mustTypecheck(t, "InitOrderInfo", test.src, &info)
+               name := mustTypecheck(test.src, nil, &info).Name()
 
                // number of initializers must match
                if len(info.InitOrder) != len(test.inits) {
@@ -1287,14 +1429,6 @@ func TestInitOrderInfo(t *testing.T) {
 }
 
 func TestMultiFileInitOrder(t *testing.T) {
-       mustParse := func(src string) *syntax.File {
-               f, err := parseSrc("main", src)
-               if err != nil {
-                       t.Fatal(err)
-               }
-               return f
-       }
-
        fileA := mustParse(`package main; var a = 1`)
        fileB := mustParse(`package main; var b = 2`)
 
@@ -1331,13 +1465,8 @@ func TestFiles(t *testing.T) {
        var info Info
        check := NewChecker(&conf, pkg, &info)
 
-       for i, src := range sources {
-               filename := fmt.Sprintf("sources%d", i)
-               f, err := parseSrc(filename, src)
-               if err != nil {
-                       t.Fatal(err)
-               }
-               if err := check.Files([]*syntax.File{f}); err != nil {
+       for _, src := range sources {
+               if err := check.Files([]*syntax.File{mustParse(src)}); err != nil {
                        t.Error(err)
                }
        }
@@ -1369,14 +1498,7 @@ func TestSelection(t *testing.T) {
        imports := make(testImporter)
        conf := Config{Importer: imports}
        makePkg := func(path, src string) {
-               f, err := parseSrc(path+".go", src)
-               if err != nil {
-                       t.Fatal(err)
-               }
-               pkg, err := conf.Check(path, []*syntax.File{f}, &Info{Selections: selections})
-               if err != nil {
-                       t.Fatal(err)
-               }
+               pkg := mustTypecheck(src, &conf, &Info{Selections: selections})
                imports[path] = pkg
        }
 
@@ -1407,15 +1529,23 @@ type C struct {
        c int
 }
 
+type G[P any] struct {
+       p P
+}
+
+func (G[P]) m(P) {}
+
+var Inst G[int]
+
 func (C) g()
 func (*C) h()
 
 func main() {
        // qualified identifiers
        var _ lib.T
-        _ = lib.C
-        _ = lib.F
-        _ = lib.V
+       _ = lib.C
+       _ = lib.F
+       _ = lib.V
        _ = lib.T.M
 
        // fields
@@ -1431,25 +1561,30 @@ func main() {
        _ = A{}.c
        _ = new(A).c
 
+       _ = Inst.p
+       _ = G[string]{}.p
+
        // methods
-        _ = A{}.f
-        _ = new(A).f
-        _ = A{}.g
-        _ = new(A).g
-        _ = new(A).h
+       _ = A{}.f
+       _ = new(A).f
+       _ = A{}.g
+       _ = new(A).g
+       _ = new(A).h
 
-        _ = B{}.f
-        _ = new(B).f
+       _ = B{}.f
+       _ = new(B).f
 
-        _ = C{}.g
-        _ = new(C).g
-        _ = new(C).h
+       _ = C{}.g
+       _ = new(C).g
+       _ = new(C).h
+       _ = Inst.m
 
        // method expressions
-        _ = A.f
-        _ = (*A).f
-        _ = B.f
-        _ = (*B).f
+       _ = A.f
+       _ = (*A).f
+       _ = B.f
+       _ = (*B).f
+       _ = G[string].m
 }`
 
        wantOut := map[string][2]string{
@@ -1463,6 +1598,7 @@ func main() {
                "new(A).b": {"field (*main.A) b int", "->[0 0]"},
                "A{}.c":    {"field (main.A) c int", ".[1 0]"},
                "new(A).c": {"field (*main.A) c int", "->[1 0]"},
+               "Inst.p":   {"field (main.G[int]) p int", ".[0]"},
 
                "A{}.f":    {"method (main.A) f(int)", "->[0 0]"},
                "new(A).f": {"method (*main.A) f(int)", "->[0 0]"},
@@ -1474,11 +1610,14 @@ func main() {
                "C{}.g":    {"method (main.C) g()", ".[0]"},
                "new(C).g": {"method (*main.C) g()", "->[0]"},
                "new(C).h": {"method (*main.C) h()", "->[1]"}, // TODO(gri) should this report .[1] ?
+               "Inst.m":   {"method (main.G[int]) m(int)", ".[0]"},
 
-               "A.f":    {"method expr (main.A) f(main.A, int)", "->[0 0]"},
-               "(*A).f": {"method expr (*main.A) f(*main.A, int)", "->[0 0]"},
-               "B.f":    {"method expr (main.B) f(main.B, int)", ".[0]"},
-               "(*B).f": {"method expr (*main.B) f(*main.B, int)", "->[0]"},
+               "A.f":           {"method expr (main.A) f(main.A, int)", "->[0 0]"},
+               "(*A).f":        {"method expr (*main.A) f(*main.A, int)", "->[0 0]"},
+               "B.f":           {"method expr (main.B) f(main.B, int)", ".[0]"},
+               "(*B).f":        {"method expr (*main.B) f(*main.B, int)", "->[0]"},
+               "G[string].m":   {"method expr (main.G[string]) m(main.G[string], string)", ".[0]"},
+               "G[string]{}.p": {"field (main.G[string]) p string", ".[0]"},
        }
 
        makePkg("lib", libSrc)
@@ -1545,12 +1684,7 @@ func TestIssue8518(t *testing.T) {
                Importer: imports,
        }
        makePkg := func(path, src string) {
-               f, err := parseSrc(path, src)
-               if err != nil {
-                       t.Fatal(err)
-               }
-               pkg, _ := conf.Check(path, []*syntax.File{f}, nil) // errors logged via conf.Error
-               imports[path] = pkg
+               imports[path], _ = conf.Check(path, []*syntax.File{mustParse(src)}, nil) // errors logged via conf.Error
        }
 
        const libSrc = `
@@ -1571,6 +1705,31 @@ var _ = a.C2
        makePkg("main", mainSrc) // don't crash when type-checking this package
 }
 
+func TestIssue59603(t *testing.T) {
+       imports := make(testImporter)
+       conf := Config{
+               Error:    func(err error) { t.Log(err) }, // don't exit after first error
+               Importer: imports,
+       }
+       makePkg := func(path, src string) {
+               imports[path], _ = conf.Check(path, []*syntax.File{mustParse(src)}, nil) // errors logged via conf.Error
+       }
+
+       const libSrc = `
+package a
+const C = foo
+`
+
+       const mainSrc = `
+package main
+import "a"
+const _ = a.C
+`
+
+       makePkg("a", libSrc)
+       makePkg("main", mainSrc) // don't crash when type-checking this package
+}
+
 func TestLookupFieldOrMethodOnNil(t *testing.T) {
        // LookupFieldOrMethod on a nil type is expected to produce a run-time panic.
        defer func() {
@@ -1598,27 +1757,45 @@ func TestLookupFieldOrMethod(t *testing.T) {
                {"var x T; type T struct{ f int }", true, []int{0}, false},
                {"var x T; type T struct{ a, b, f, c int }", true, []int{2}, false},
 
+               // field lookups on a generic type
+               {"var x T[int]; type T[P any] struct{}", false, nil, false},
+               {"var x T[int]; type T[P any] struct{ f P }", true, []int{0}, false},
+               {"var x T[int]; type T[P any] struct{ a, b, f, c P }", true, []int{2}, false},
+
                // method lookups
                {"var a T; type T struct{}; func (T) f() {}", true, []int{0}, false},
                {"var a *T; type T struct{}; func (T) f() {}", true, []int{0}, true},
                {"var a T; type T struct{}; func (*T) f() {}", true, []int{0}, false},
                {"var a *T; type T struct{}; func (*T) f() {}", true, []int{0}, true}, // TODO(gri) should this report indirect = false?
 
+               // method lookups on a generic type
+               {"var a T[int]; type T[P any] struct{}; func (T[P]) f() {}", true, []int{0}, false},
+               {"var a *T[int]; type T[P any] struct{}; func (T[P]) f() {}", true, []int{0}, true},
+               {"var a T[int]; type T[P any] struct{}; func (*T[P]) f() {}", true, []int{0}, false},
+               {"var a *T[int]; type T[P any] struct{}; func (*T[P]) f() {}", true, []int{0}, true}, // TODO(gri) should this report indirect = false?
+
                // collisions
                {"type ( E1 struct{ f int }; E2 struct{ f int }; x struct{ E1; *E2 })", false, []int{1, 0}, false},
                {"type ( E1 struct{ f int }; E2 struct{}; x struct{ E1; *E2 }); func (E2) f() {}", false, []int{1, 0}, false},
 
+               // collisions on a generic type
+               {"type ( E1[P any] struct{ f P }; E2[P any] struct{ f P }; x struct{ E1[int]; *E2[int] })", false, []int{1, 0}, false},
+               {"type ( E1[P any] struct{ f P }; E2[P any] struct{}; x struct{ E1[int]; *E2[int] }); func (E2[P]) f() {}", false, []int{1, 0}, false},
+
                // outside methodset
                // (*T).f method exists, but value of type T is not addressable
                {"var x T; type T struct{}; func (*T) f() {}", false, nil, true},
+
+               // outside method set of a generic type
+               {"var x T[int]; type T[P any] struct{}; func (*T[P]) f() {}", false, nil, true},
+
+               // recursive generic types; see go.dev/issue/52715
+               {"var a T[int]; type ( T[P any] struct { *N[P] }; N[P any] struct { *T[P] } ); func (N[P]) f() {}", true, []int{0, 0}, true},
+               {"var a T[int]; type ( T[P any] struct { *N[P] }; N[P any] struct { *T[P] } ); func (T[P]) f() {}", true, []int{0}, false},
        }
 
        for _, test := range tests {
-               pkg, err := pkgFor("test", "package p;"+test.src, nil)
-               if err != nil {
-                       t.Errorf("%s: incorrect test case: %s", test.src, err)
-                       continue
-               }
+               pkg := mustTypecheck("package p;"+test.src, nil, nil)
 
                obj := pkg.Scope().Lookup("a")
                if obj == nil {
@@ -1645,6 +1822,34 @@ func TestLookupFieldOrMethod(t *testing.T) {
        }
 }
 
+// Test for go.dev/issue/52715
+func TestLookupFieldOrMethod_RecursiveGeneric(t *testing.T) {
+       const src = `
+package pkg
+
+type Tree[T any] struct {
+       *Node[T]
+}
+
+func (*Tree[R]) N(r R) R { return r }
+
+type Node[T any] struct {
+       *Tree[T]
+}
+
+type Instance = *Tree[int]
+`
+
+       f := mustParse(src)
+       pkg := NewPackage("pkg", f.PkgName.Value)
+       if err := NewChecker(nil, pkg, nil).Files([]*syntax.File{f}); err != nil {
+               panic(err)
+       }
+
+       T := pkg.Scope().Lookup("Instance").Type()
+       _, _, _ = LookupFieldOrMethod(T, false, pkg, "M") // verify that LookupFieldOrMethod terminates
+}
+
 func sameSlice(a, b []int) bool {
        if len(a) != len(b) {
                return false
@@ -1664,11 +1869,8 @@ func TestScopeLookupParent(t *testing.T) {
        conf := Config{Importer: imports}
        var info Info
        makePkg := func(path, src string) {
-               f, err := parseSrc(path, src)
-               if err != nil {
-                       t.Fatal(err)
-               }
-               imports[path], err = conf.Check(path, []*syntax.File{f}, &info)
+               var err error
+               imports[path], err = conf.Check(path, []*syntax.File{mustParse(src)}, &info)
                if err != nil {
                        t.Fatal(err)
                }
@@ -1697,7 +1899,7 @@ func F(){
        var F = /*F=func:12*/ F /*F=var:17*/ ; _ = F
 
        var a []int
-       for i, x := range /*i=undef*/ /*x=var:16*/ a /*i=var:20*/ /*x=var:20*/ { _ = i; _ = x }
+       for i, x := range a /*i=undef*/ /*x=var:16*/ { _ = i; _ = x }
 
        var i interface{}
        switch y := i.(type) { /*y=undef*/
@@ -1784,8 +1986,6 @@ func F(){
        }
 }
 
-var nopos syntax.Pos
-
 // newDefined creates a new defined type named T with the given underlying type.
 func newDefined(underlying Type) *Named {
        tname := NewTypeName(nopos, nil, "T", nil)
@@ -1804,8 +2004,9 @@ func TestConvertibleTo(t *testing.T) {
                {newDefined(new(Struct)), new(Struct), true},
                {newDefined(Typ[Int]), new(Struct), false},
                {Typ[UntypedInt], Typ[Int], true},
+               {NewSlice(Typ[Int]), NewArray(Typ[Int], 10), true},
+               {NewSlice(Typ[Int]), NewArray(Typ[Uint], 10), false},
                {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Int], 10)), true},
-               {NewSlice(Typ[Int]), NewArray(Typ[Int], 10), false},
                {NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Uint], 10)), false},
                // Untyped string values are not permitted by the spec, so the behavior below is undefined.
                {Typ[UntypedString], Typ[String], true},
@@ -1863,7 +2064,7 @@ func TestIdentical(t *testing.T) {
                {`func X(int) string { return "" }; func Y(int) {}`, false},
 
                // Generic functions. Type parameters should be considered identical modulo
-               // renaming. See also issue #49722.
+               // renaming. See also go.dev/issue/49722.
                {`func X[P ~int](){}; func Y[Q ~int]() {}`, true},
                {`func X[P1 any, P2 ~*P1](){}; func Y[Q1 any, Q2 ~*Q1]() {}`, true},
                {`func X[P1 any, P2 ~[]P1](){}; func Y[Q1 any, Q2 ~*Q1]() {}`, false},
@@ -1873,11 +2074,7 @@ func TestIdentical(t *testing.T) {
        }
 
        for _, test := range tests {
-               pkg, err := pkgFor("test", "package p;"+test.src, nil)
-               if err != nil {
-                       t.Errorf("%s: incorrect test case: %s", test.src, err)
-                       continue
-               }
+               pkg := mustTypecheck("package p;"+test.src, nil, nil)
                X := pkg.Scope().Lookup("X")
                Y := pkg.Scope().Lookup("Y")
                if X == nil || Y == nil {
@@ -1948,12 +2145,32 @@ func TestIdenticalUnions(t *testing.T) {
        }
 }
 
+func TestIssue61737(t *testing.T) {
+       // This test verifies that it is possible to construct invalid interfaces
+       // containing duplicate methods using the go/types API.
+       //
+       // It must be possible for importers to construct such invalid interfaces.
+       // Previously, this panicked.
+
+       sig1 := NewSignatureType(nil, nil, nil, NewTuple(NewParam(nopos, nil, "", Typ[Int])), nil, false)
+       sig2 := NewSignatureType(nil, nil, nil, NewTuple(NewParam(nopos, nil, "", Typ[String])), nil, false)
+
+       methods := []*Func{
+               NewFunc(nopos, nil, "M", sig1),
+               NewFunc(nopos, nil, "M", sig2),
+       }
+
+       embeddedMethods := []*Func{
+               NewFunc(nopos, nil, "M", sig2),
+       }
+       embedded := NewInterfaceType(embeddedMethods, nil)
+       iface := NewInterfaceType(methods, []Type{embedded})
+       iface.NumMethods() // unlike go/types, there is no Complete() method, so we complete implicitly
+}
+
 func TestIssue15305(t *testing.T) {
        const src = "package p; func f() int16; var _ = f(undef)"
-       f, err := parseSrc("issue15305.go", src)
-       if err != nil {
-               t.Fatal(err)
-       }
+       f := mustParse(src)
        conf := Config{
                Error: func(err error) {}, // allow errors
        }
@@ -1976,32 +2193,26 @@ func TestIssue15305(t *testing.T) {
 // types for composite literal expressions and composite literal type
 // expressions.
 func TestCompositeLitTypes(t *testing.T) {
-       for _, test := range []struct {
+       for i, test := range []struct {
                lit, typ string
        }{
                {`[16]byte{}`, `[16]byte`},
-               {`[...]byte{}`, `[0]byte`},                // test for issue #14092
-               {`[...]int{1, 2, 3}`, `[3]int`},           // test for issue #14092
-               {`[...]int{90: 0, 98: 1, 2}`, `[100]int`}, // test for issue #14092
+               {`[...]byte{}`, `[0]byte`},                // test for go.dev/issue/14092
+               {`[...]int{1, 2, 3}`, `[3]int`},           // test for go.dev/issue/14092
+               {`[...]int{90: 0, 98: 1, 2}`, `[100]int`}, // test for go.dev/issue/14092
                {`[]int{}`, `[]int`},
                {`map[string]bool{"foo": true}`, `map[string]bool`},
                {`struct{}{}`, `struct{}`},
                {`struct{x, y int; z complex128}{}`, `struct{x int; y int; z complex128}`},
        } {
-               f, err := parseSrc(test.lit, "package p; var _ = "+test.lit)
-               if err != nil {
-                       t.Fatalf("%s: %v", test.lit, err)
-               }
-
-               info := &Info{
-                       Types: make(map[syntax.Expr]TypeAndValue),
-               }
-               if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
+               f := mustParse(fmt.Sprintf("package p%d; var _ = %s", i, test.lit))
+               types := make(map[syntax.Expr]TypeAndValue)
+               if _, err := new(Config).Check("p", []*syntax.File{f}, &Info{Types: types}); err != nil {
                        t.Fatalf("%s: %v", test.lit, err)
                }
 
                cmptype := func(x syntax.Expr, want string) {
-                       tv, ok := info.Types[x]
+                       tv, ok := types[x]
                        if !ok {
                                t.Errorf("%s: no Types entry found", test.lit)
                                return
@@ -2048,15 +2259,12 @@ func (*T1) m2() {}
 func f(x int) { y := x; print(y) }
 `
 
-       f, err := parseSrc("src", src)
-       if err != nil {
-               t.Fatal(err)
-       }
+       f := mustParse(src)
 
        info := &Info{
                Defs: make(map[*syntax.Name]Object),
        }
-       if _, err = new(Config).Check("p", []*syntax.File{f}, info); err != nil {
+       if _, err := new(Config).Check("p", []*syntax.File{f}, info); err != nil {
                t.Fatal(err)
        }
 
@@ -2109,10 +2317,7 @@ type T = foo.T
 var v T = c
 func f(x T) T { return foo.F(x) }
 `
-       f, err := parseSrc("src", src)
-       if err != nil {
-               t.Fatal(err)
-       }
+       f := mustParse(src)
        files := []*syntax.File{f}
 
        // type-check using all possible importers
@@ -2167,10 +2372,7 @@ func f(x T) T { return foo.F(x) }
 func TestInstantiate(t *testing.T) {
        // eventually we like more tests but this is a start
        const src = "package p; type T[P any] *T[P]"
-       pkg, err := pkgFor(".", src, nil)
-       if err != nil {
-               t.Fatal(err)
-       }
+       pkg := mustTypecheck(src, nil, nil)
 
        // type T should have one type parameter
        T := pkg.Scope().Lookup("T").Type().(*Named)
@@ -2191,6 +2393,60 @@ func TestInstantiate(t *testing.T) {
        }
 }
 
+func TestInstantiateConcurrent(t *testing.T) {
+       const src = `package p
+
+type I[P any] interface {
+       m(P)
+       n() P
+}
+
+type J = I[int]
+
+type Nested[P any] *interface{b(P)}
+
+type K = Nested[string]
+`
+       pkg := mustTypecheck(src, nil, nil)
+
+       insts := []*Interface{
+               pkg.Scope().Lookup("J").Type().Underlying().(*Interface),
+               pkg.Scope().Lookup("K").Type().Underlying().(*Pointer).Elem().(*Interface),
+       }
+
+       // Use the interface instances concurrently.
+       for _, inst := range insts {
+               var (
+                       counts  [2]int      // method counts
+                       methods [2][]string // method strings
+               )
+               var wg sync.WaitGroup
+               for i := 0; i < 2; i++ {
+                       i := i
+                       wg.Add(1)
+                       go func() {
+                               defer wg.Done()
+
+                               counts[i] = inst.NumMethods()
+                               for mi := 0; mi < counts[i]; mi++ {
+                                       methods[i] = append(methods[i], inst.Method(mi).String())
+                               }
+                       }()
+               }
+               wg.Wait()
+
+               if counts[0] != counts[1] {
+                       t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
+                       continue
+               }
+               for i := 0; i < counts[0]; i++ {
+                       if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
+                               t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
+                       }
+               }
+       }
+}
+
 func TestInstantiateErrors(t *testing.T) {
        tests := []struct {
                src    string // by convention, T must be the type being instantiated
@@ -2205,14 +2461,11 @@ func TestInstantiateErrors(t *testing.T) {
 
        for _, test := range tests {
                src := "package p; " + test.src
-               pkg, err := pkgFor(".", src, nil)
-               if err != nil {
-                       t.Fatal(err)
-               }
+               pkg := mustTypecheck(src, nil, nil)
 
                T := pkg.Scope().Lookup("T").Type().(*Named)
 
-               _, err = Instantiate(nil, T, test.targs, true)
+               _, err := Instantiate(nil, T, test.targs, true)
                if err == nil {
                        t.Fatalf("Instantiate(%v, %v) returned nil error, want non-nil", T, test.targs)
                }
@@ -2223,7 +2476,7 @@ func TestInstantiateErrors(t *testing.T) {
                }
 
                if argErr.Index != test.wantAt {
-                       t.Errorf("Instantate(%v, %v): error at index %d, want index %d", T, test.targs, argErr.Index, test.wantAt)
+                       t.Errorf("Instantiate(%v, %v): error at index %d, want index %d", T, test.targs, argErr.Index, test.wantAt)
                }
        }
 }
@@ -2246,10 +2499,7 @@ func TestInstanceIdentity(t *testing.T) {
        imports := make(testImporter)
        conf := Config{Importer: imports}
        makePkg := func(src string) {
-               f, err := parseSrc("", src)
-               if err != nil {
-                       t.Fatal(err)
-               }
+               f := mustParse(src)
                name := f.PkgName.Value
                pkg, err := conf.Check(name, []*syntax.File{f}, nil)
                if err != nil {
@@ -2267,6 +2517,136 @@ func TestInstanceIdentity(t *testing.T) {
        }
 }
 
+// TestInstantiatedObjects verifies properties of instantiated objects.
+func TestInstantiatedObjects(t *testing.T) {
+       const src = `
+package p
+
+type T[P any] struct {
+       field P
+}
+
+func (recv *T[Q]) concreteMethod(mParam Q) (mResult Q) { return }
+
+type FT[P any] func(ftParam P) (ftResult P)
+
+func F[P any](fParam P) (fResult P){ return }
+
+type I[P any] interface {
+       interfaceMethod(P)
+}
+
+type R[P any] T[P]
+
+func (R[P]) m() {} // having a method triggers expansion of R
+
+var (
+       t T[int]
+       ft FT[int]
+       f = F[int]
+       i I[int]
+)
+
+func fn() {
+       var r R[int]
+       _ = r
+}
+`
+       info := &Info{
+               Defs: make(map[*syntax.Name]Object),
+       }
+       f := mustParse(src)
+       conf := Config{}
+       pkg, err := conf.Check(f.PkgName.Value, []*syntax.File{f}, info)
+       if err != nil {
+               t.Fatal(err)
+       }
+
+       lookup := func(name string) Type { return pkg.Scope().Lookup(name).Type() }
+       fnScope := pkg.Scope().Lookup("fn").(*Func).Scope()
+
+       tests := []struct {
+               name string
+               obj  Object
+       }{
+               // Struct fields
+               {"field", lookup("t").Underlying().(*Struct).Field(0)},
+               {"field", fnScope.Lookup("r").Type().Underlying().(*Struct).Field(0)},
+
+               // Methods and method fields
+               {"concreteMethod", lookup("t").(*Named).Method(0)},
+               {"recv", lookup("t").(*Named).Method(0).Type().(*Signature).Recv()},
+               {"mParam", lookup("t").(*Named).Method(0).Type().(*Signature).Params().At(0)},
+               {"mResult", lookup("t").(*Named).Method(0).Type().(*Signature).Results().At(0)},
+
+               // Interface methods
+               {"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
+
+               // Function type fields
+               {"ftParam", lookup("ft").Underlying().(*Signature).Params().At(0)},
+               {"ftResult", lookup("ft").Underlying().(*Signature).Results().At(0)},
+
+               // Function fields
+               {"fParam", lookup("f").(*Signature).Params().At(0)},
+               {"fResult", lookup("f").(*Signature).Results().At(0)},
+       }
+
+       // Collect all identifiers by name.
+       idents := make(map[string][]*syntax.Name)
+       syntax.Inspect(f, func(n syntax.Node) bool {
+               if id, ok := n.(*syntax.Name); ok {
+                       idents[id.Value] = append(idents[id.Value], id)
+               }
+               return true
+       })
+
+       for _, test := range tests {
+               test := test
+               t.Run(test.name, func(t *testing.T) {
+                       if got := len(idents[test.name]); got != 1 {
+                               t.Fatalf("found %d identifiers named %s, want 1", got, test.name)
+                       }
+                       ident := idents[test.name][0]
+                       def := info.Defs[ident]
+                       if def == test.obj {
+                               t.Fatalf("info.Defs[%s] contains the test object", test.name)
+                       }
+                       if orig := originObject(test.obj); def != orig {
+                               t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
+                       }
+                       if def.Pkg() != test.obj.Pkg() {
+                               t.Errorf("Pkg() = %v, want %v", def.Pkg(), test.obj.Pkg())
+                       }
+                       if def.Name() != test.obj.Name() {
+                               t.Errorf("Name() = %v, want %v", def.Name(), test.obj.Name())
+                       }
+                       if def.Pos() != test.obj.Pos() {
+                               t.Errorf("Pos() = %v, want %v", def.Pos(), test.obj.Pos())
+                       }
+                       if def.Parent() != test.obj.Parent() {
+                               t.Fatalf("Parent() = %v, want %v", def.Parent(), test.obj.Parent())
+                       }
+                       if def.Exported() != test.obj.Exported() {
+                               t.Fatalf("Exported() = %v, want %v", def.Exported(), test.obj.Exported())
+                       }
+                       if def.Id() != test.obj.Id() {
+                               t.Fatalf("Id() = %v, want %v", def.Id(), test.obj.Id())
+                       }
+                       // String and Type are expected to differ.
+               })
+       }
+}
+
+func originObject(obj Object) Object {
+       switch obj := obj.(type) {
+       case *Var:
+               return obj.Origin()
+       case *Func:
+               return obj.Origin()
+       }
+       return obj
+}
+
 func TestImplements(t *testing.T) {
        const src = `
 package p
@@ -2306,34 +2686,31 @@ func (N4) m()
 type Bad Bad // invalid type
 `
 
-       f, err := parseSrc("p.go", src)
-       if err != nil {
-               t.Fatal(err)
-       }
+       f := mustParse(src)
        conf := Config{Error: func(error) {}}
        pkg, _ := conf.Check(f.PkgName.Value, []*syntax.File{f}, nil)
 
-       scope := pkg.Scope()
+       lookup := func(tname string) Type { return pkg.Scope().Lookup(tname).Type() }
        var (
-               EmptyIface   = scope.Lookup("EmptyIface").Type().Underlying().(*Interface)
-               I            = scope.Lookup("I").Type().(*Named)
+               EmptyIface   = lookup("EmptyIface").Underlying().(*Interface)
+               I            = lookup("I").(*Named)
                II           = I.Underlying().(*Interface)
-               C            = scope.Lookup("C").Type().(*Named)
+               C            = lookup("C").(*Named)
                CI           = C.Underlying().(*Interface)
-               Integer      = scope.Lookup("Integer").Type().Underlying().(*Interface)
-               EmptyTypeSet = scope.Lookup("EmptyTypeSet").Type().Underlying().(*Interface)
-               N1           = scope.Lookup("N1").Type()
+               Integer      = lookup("Integer").Underlying().(*Interface)
+               EmptyTypeSet = lookup("EmptyTypeSet").Underlying().(*Interface)
+               N1           = lookup("N1")
                N1p          = NewPointer(N1)
-               N2           = scope.Lookup("N2").Type()
+               N2           = lookup("N2")
                N2p          = NewPointer(N2)
-               N3           = scope.Lookup("N3").Type()
-               N4           = scope.Lookup("N4").Type()
-               Bad          = scope.Lookup("Bad").Type()
+               N3           = lookup("N3")
+               N4           = lookup("N4")
+               Bad          = lookup("Bad")
        )
 
        tests := []struct {
-               t    Type
-               i    *Interface
+               V    Type
+               T    *Interface
                want bool
        }{
                {I, II, true},
@@ -2364,8 +2741,139 @@ type Bad Bad // invalid type
        }
 
        for _, test := range tests {
-               if got := Implements(test.t, test.i); got != test.want {
-                       t.Errorf("Implements(%s, %s) = %t, want %t", test.t, test.i, got, test.want)
+               if got := Implements(test.V, test.T); got != test.want {
+                       t.Errorf("Implements(%s, %s) = %t, want %t", test.V, test.T, got, test.want)
+               }
+
+               // The type assertion x.(T) is valid if T is an interface or if T implements the type of x.
+               // The assertion is never valid if T is a bad type.
+               V := test.T
+               T := test.V
+               want := false
+               if _, ok := T.Underlying().(*Interface); (ok || Implements(T, V)) && T != Bad {
+                       want = true
+               }
+               if got := AssertableTo(V, T); got != want {
+                       t.Errorf("AssertableTo(%s, %s) = %t, want %t", V, T, got, want)
+               }
+       }
+}
+
+func TestMissingMethodAlternative(t *testing.T) {
+       const src = `
+package p
+type T interface {
+       m()
+}
+
+type V0 struct{}
+func (V0) m() {}
+
+type V1 struct{}
+
+type V2 struct{}
+func (V2) m() int
+
+type V3 struct{}
+func (*V3) m()
+
+type V4 struct{}
+func (V4) M()
+`
+
+       pkg := mustTypecheck(src, nil, nil)
+
+       T := pkg.Scope().Lookup("T").Type().Underlying().(*Interface)
+       lookup := func(name string) (*Func, bool) {
+               return MissingMethod(pkg.Scope().Lookup(name).Type(), T, true)
+       }
+
+       // V0 has method m with correct signature. Should not report wrongType.
+       method, wrongType := lookup("V0")
+       if method != nil || wrongType {
+               t.Fatalf("V0: got method = %v, wrongType = %v", method, wrongType)
+       }
+
+       checkMissingMethod := func(tname string, reportWrongType bool) {
+               method, wrongType := lookup(tname)
+               if method == nil || method.Name() != "m" || wrongType != reportWrongType {
+                       t.Fatalf("%s: got method = %v, wrongType = %v", tname, method, wrongType)
+               }
+       }
+
+       // V1 has no method m. Should not report wrongType.
+       checkMissingMethod("V1", false)
+
+       // V2 has method m with wrong signature type (ignoring receiver). Should report wrongType.
+       checkMissingMethod("V2", true)
+
+       // V3 has no method m but it exists on *V3. Should report wrongType.
+       checkMissingMethod("V3", true)
+
+       // V4 has no method m but has M. Should not report wrongType.
+       checkMissingMethod("V4", false)
+}
+
+func TestErrorURL(t *testing.T) {
+       conf := Config{ErrorURL: " [go.dev/e/%s]"}
+
+       // test case for a one-line error
+       const src1 = `
+package p
+var _ T
+`
+       _, err := typecheck(src1, &conf, nil)
+       if err == nil || !strings.HasSuffix(err.Error(), " [go.dev/e/UndeclaredName]") {
+               t.Errorf("src1: unexpected error: got %v", err)
+       }
+
+       // test case for a multi-line error
+       const src2 = `
+package p
+func f() int { return 0 }
+var _ = f(1, 2)
+`
+       _, err = typecheck(src2, &conf, nil)
+       if err == nil || !strings.Contains(err.Error(), " [go.dev/e/WrongArgCount]\n") {
+               t.Errorf("src1: unexpected error: got %v", err)
+       }
+}
+
+func TestFileVersions(t *testing.T) {
+       for _, test := range []struct {
+               moduleVersion string
+               fileVersion   string
+               wantVersion   string
+       }{
+               {"", "", ""},                   // no versions specified
+               {"go1.19", "", "go1.19"},       // module version specified
+               {"", "go1.20", ""},             // file upgrade ignored
+               {"go1.19", "go1.20", "go1.20"}, // file upgrade permitted
+               {"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
+               {"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
+       } {
+               var src string
+               if test.fileVersion != "" {
+                       src = "//go:build " + test.fileVersion + "\n"
+               }
+               src += "package p"
+
+               conf := Config{GoVersion: test.moduleVersion}
+               versions := make(map[*syntax.PosBase]string)
+               var info Info
+               info.FileVersions = versions
+               mustTypecheck(src, &conf, &info)
+
+               n := 0
+               for _, v := range info.FileVersions {
+                       want := test.wantVersion
+                       if v != want {
+                               t.Errorf("%q: unexpected file version: got %v, want %v", src, v, want)
+                       }
+                       n++
+               }
+               if n != 1 {
+                       t.Errorf("%q: incorrect number of map entries: got %d", src, n)
                }
        }
 }