...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/mod/example.com_fix_v1.1.0-compatible-same.txt

Documentation: golang.org/x/exp/cmd/gorelease/testdata/mod

     1-- go.mod --
     2module example.com/fix
     3
     4go 1.13
     5-- bad/bad.go --
     6package bad
     7
     8func Broken() int { return 0 }
     9func Bad() int { return 1 }
    10func Worse() int { return -1 }
    11-- good/good.go --
    12package good
    13
    14func Good() int { return 1 }

View as plain text