golang.org/x/exp@v0.0.0-20240506185415-9bf2ced13842/cmd/gorelease/testdata/mod/example.com_fix_v1.1.0-compatible-same.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  func Worse() int { return -1 }
    11  -- good/good.go --
    12  package good
    13  
    14  func Good() int { return 1 }