summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/golang.org/x/exp@v0.0.0-20220613132600-b0d781184e0d/cmd/gorelease/testdata/mod/example.com_basic_v1.1.1.txt
blob: 743517b81395217d3ffbc722e9585789f805db47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- go.mod --
module example.com/basic

go 1.12
-- a/a.go --
package a

func A() int { return 1 }
func A2() int { return 2 }
-- b/b.go --
package b

func B() int { return 3 }