aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/mod/example.com_generics_v1.0.0.txt
blob: 092241e93b20be4ed0accc4a54417277d0aed694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
example.com/generics v1.0.0
written by hand

-- .mod --
module example.com/generics

go 1.18
-- .info --
{"Version":"v1.0.0"}
-- go.mod --
module example.com/generics

go 1.18
-- generics.go --
package generics

type Int interface {
	~int
}

func Bar() {}