...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/mod/example.com_fix_v1.1.0-compatible-other.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 }
    10-- good/good.go --
    11package good
    12
    13func Good() int { return 1 }
    14func Better() int { return 2 }

View as plain text