Rust

Rust

Made by DeepSource

Found if block with identical else block RS-W1008

Bug risk
Minor
Autofix

if-else expressions with the same if and else parts are probably a result of a copy-paste. The result of the expression is independent of the condition.

Consider revisiting the else block.

Bad practice

let foo = if important_flag {
    42
} else {
    42 // probably a mistake
};