...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/mod/example.com_generics_v0.0.1.txt

Documentation: golang.org/x/exp/cmd/gorelease/testdata/mod

     1-- go.mod --
     2module example.com/generics
     3
     4go 1.18
     5-- a/a.go --
     6package a
     7
     8type Foo[V any] interface {
     9    Value() V
    10}

View as plain text