Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manual_unwrap_or_default triggers on code with mutation #12553

Closed
Ltrlg opened this issue Mar 25, 2024 · 2 comments
Closed

manual_unwrap_or_default triggers on code with mutation #12553

Ltrlg opened this issue Mar 25, 2024 · 2 comments
Labels
C-bug Category: Clippy is not doing the correct thing I-false-positive Issue: The lint was triggered on code it shouldn't have

Comments

@Ltrlg
Copy link

Ltrlg commented Mar 25, 2024

Summary

manual_unwrap_or_default seems to be assuming that the unwrapped value is not mutated.

Lint Name

manual_unwrap_or_default

Reproducer

I tried this code:

pub fn unwrap_with_suffix(unsuffixed_opt: Option<String>) -> String {
    if let Some(mut res) = unsuffixed_opt {
        res.push_str("_suffixed");
        res
    } else {
        String::new()
    }
}

I saw this happen:

warning: if let can be simplified with `.unwrap_or_default()`
 --> src/lib.rs:2:5
  |
2 | /     if let Some(mut res) = unsuffixed_opt {
3 | |         res.push_str("_suffixed");
4 | |         res
5 | |     } else {
6 | |         String::new()
7 | |     }
  | |_____^ help: replace it with: `unsuffixed_opt.unwrap_or_default()`
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or_default
  = note: `#[warn(clippy::manual_unwrap_or_default)]` on by default

I expected to see this happen:

No warning, as the proposed replacement is not equivalent.

Version

rustc 1.79.0-nightly (0824b300e 2024-03-24)
binary: rustc
commit-hash: 0824b300eb0dae5d9ed59719d3f2732016683d66
commit-date: 2024-03-24
host: x86_64-unknown-linux-gnu
release: 1.79.0-nightly
LLVM version: 18.1.2

Additional Labels

No response

@Ltrlg Ltrlg added C-bug Category: Clippy is not doing the correct thing I-false-positive Issue: The lint was triggered on code it shouldn't have labels Mar 25, 2024
@ARandomDev99
Copy link
Contributor

@rustbot claim

@ARandomDev99
Copy link
Contributor

ARandomDev99 commented Apr 9, 2024

This has been fixed in #12579.

@y21 y21 closed this as completed Apr 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: Clippy is not doing the correct thing I-false-positive Issue: The lint was triggered on code it shouldn't have
Projects
None yet
Development

No branches or pull requests

3 participants