...

Text file src/cmd/go/testdata/mod/example.com_generics_v1.0.0.txt

Documentation: cmd/go/testdata/mod

     1example.com/generics v1.0.0
     2written by hand
     3
     4-- .mod --
     5module example.com/generics
     6
     7go 1.18
     8-- .info --
     9{"Version":"v1.0.0"}
    10-- go.mod --
    11module example.com/generics
    12
    13go 1.18
    14-- generics.go --
    15package generics
    16
    17type Int interface {
    18	~int
    19}
    20
    21func Bar() {}

View as plain text