Open
Description
When the compiler or clippy produce suggestions, some of them are marked as MaybeIncorrect; i.e. the suggestion should probably not be automatically applied. rustfix currently doesn't touch these.
This leads to confusion like in #8806, and is somewhat frustrating. We should at the very least be clear that such suggestions were not applied.
Ideally, we should provide a mode where you can apply them anyway (cargo clippy --fix --apply-all-suggestions
?), or apply them using a "pick and choose" mode. We can then mention it when people have suggestions that were not applied.
See also: #13023