File: //opt/golang/1.22.0/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 example.com/retract/[email protected]+incompatible
stderr '^go: warning: example.com/retract/[email protected]\+incompatible: retracted by module author$'
# We should still see a warning if the +incompatible was previously in the
# build list.
go get example.com/retract/[email protected]+incompatible
stderr '^go: warning: example.com/retract/[email protected]\+incompatible: retracted by module author$'