golang.org/x/exp@v0.0.0-20240506185415-9bf2ced13842/cmd/gorelease/testdata/mod/example.com_fix_v1.1.0-compatible-other.txt (about) 1 -- go.mod -- 2 module example.com/fix 3 4 go 1.13 5 -- bad/bad.go -- 6 package bad 7 8 func Broken() int { return 0 } 9 func Bad() int { return 1 } 10 -- good/good.go -- 11 package good 12 13 func Good() int { return 1 } 14 func Better() int { return 2 }