summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/golang.org/x/exp@v0.0.0-20220613132600-b0d781184e0d/cmd/gorelease/testdata/mod/example.com_fix_v1.1.0-compatible-same.txt
blob: 6ff92997ae98c05b745f56719cf12b350513f098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- go.mod --
module example.com/fix

go 1.13
-- bad/bad.go --
package bad

func Broken() int { return 0 }
func Bad() int { return 1 }
func Worse() int { return -1 }
-- good/good.go --
package good

func Good() int { return 1 }