Suggestion by unnecessary_unwrap reverses conditions #11006
Labels
C-bug
Category: Clippy is not doing the correct thing
I-suggestion-causes-error
Issue: The suggestions provided by this Lint cause an ICE/error when applied
Summary
unnecessary_unwrap suggests to replace with
if ... is_none()
withif let Some(..) = ...
, which reverses conditions.Reproducer
I tried this code:
I expected to see this happen:
N/A
Instead, this happened:
Version
Additional Labels
@rustbot label +I-suggestion-causes-error
The text was updated successfully, but these errors were encountered: