%PDF- %PDF-
Direktori : /usr/local/go/src/cmd/go/testdata/script/ |
Current File : //usr/local/go/src/cmd/go/testdata/script/mod_retract_incompatible.txt |
# The current version of a module should not be considered when loading # retractions. If the current version is +incompatible, we should not prefer # +incompatible versions when looking for retractions. # Verifies #42601. go mod init m # Request a +incompatible version retracted in v1.0.0. go get -d example.com/retract/incompatible@v2.0.0+incompatible stderr '^go: warning: example.com/retract/incompatible@v2.0.0\+incompatible: retracted by module author$' # We should still see a warning if the +incompatible was previously in the # build list. go get -d example.com/retract/incompatible@v2.0.0+incompatible stderr '^go: warning: example.com/retract/incompatible@v2.0.0\+incompatible: retracted by module author$'