mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9ff7c91100
New lint suggests using `if .. else ..` instead of `.then_some(..).unwrap_or(..)`.
7 lines
102 B
Rust
7 lines
102 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::obfuscated_if_else)]
|
|
|
|
fn main() {
|
|
if true { "a" } else { "b" };
|
|
}
|