We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e06b8 commit 939195fCopy full SHA for 939195f
go/ssa/stdlib_test.go
@@ -51,7 +51,12 @@ func TestStdlib(t *testing.T) {
51
ctxt.GOPATH = "" // disable GOPATH
52
conf := loader.Config{Build: &ctxt}
53
for _, path := range buildutil.AllPackages(conf.Build) {
54
- conf.ImportWithTests(path)
+ // Temporarily skip packages that use generics until supported by go/ssa.
55
+ //
56
+ // TODO(#48595): revert this once go/ssa supports generics.
57
+ if !testenv.UsesGenerics(path) {
58
+ conf.ImportWithTests(path)
59
+ }
60
}
61
62
iprog, err := conf.Load()
0 commit comments