Sign in
go
/
exp
/
b698a44fee457056ed79f37145869b8d208e396a
/
.
/
cmd
/
gorelease
/
testdata
/
mod
/
example.com_fix_v1.1.0-incompatible-other.txt
blob: a7013b880f07c55ccb9c26536c429c67777beadf [
file
] [
log
] [
blame
]
-- go.mod --
module example.com/fix
go 1.13
-- bad/bad.go --
package bad
func Broken() int { return 0 }
func Bad() int { return 1 }
-- good/good.go --
package good
func Good() string { return "1" }