2021-03-25 18:29:11 +00:00
|
|
|
#![warn(clippy::if_then_some_else_none)]
|
2023-12-28 18:33:07 +00:00
|
|
|
#![allow(clippy::redundant_pattern_matching)]
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Should issue an error.
|
|
|
|
let _ = if foo() {
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this could be simplified with `bool::then`
|
2021-03-25 18:29:11 +00:00
|
|
|
println!("true!");
|
|
|
|
Some("foo")
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
// Should issue an error when macros are used.
|
|
|
|
let _ = if matches!(true, true) {
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this could be simplified with `bool::then`
|
2021-03-25 18:29:11 +00:00
|
|
|
println!("true!");
|
|
|
|
Some(matches!(true, false))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
// Should issue an error. Binary expression `o < 32` should be parenthesized.
|
|
|
|
let x = Some(5);
|
|
|
|
let _ = x.and_then(|o| if o < 32 { Some(o) } else { None });
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this could be simplified with `bool::then_some`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
// Should issue an error. Unary expression `!x` should be parenthesized.
|
|
|
|
let x = true;
|
|
|
|
let _ = if !x { Some(0) } else { None };
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this could be simplified with `bool::then_some`
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
// Should not issue an error since the `else` block has a statement besides `None`.
|
|
|
|
let _ = if foo() {
|
|
|
|
println!("true!");
|
|
|
|
Some("foo")
|
|
|
|
} else {
|
|
|
|
eprintln!("false...");
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
// Should not issue an error since there are more than 2 blocks in the if-else chain.
|
|
|
|
let _ = if foo() {
|
|
|
|
println!("foo true!");
|
|
|
|
Some("foo")
|
|
|
|
} else if bar() {
|
|
|
|
println!("bar true!");
|
|
|
|
Some("bar")
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
let _ = if foo() {
|
|
|
|
println!("foo true!");
|
|
|
|
Some("foo")
|
|
|
|
} else {
|
|
|
|
bar().then(|| {
|
|
|
|
println!("bar true!");
|
|
|
|
"bar"
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
// Should not issue an error since the `then` block has `None`, not `Some`.
|
|
|
|
let _ = if foo() { None } else { Some("foo is false") };
|
|
|
|
|
|
|
|
// Should not issue an error since the `else` block doesn't use `None` directly.
|
|
|
|
let _ = if foo() { Some("foo is true") } else { into_none() };
|
|
|
|
|
|
|
|
// Should not issue an error since the `then` block doesn't use `Some` directly.
|
|
|
|
let _ = if foo() { into_some("foo") } else { None };
|
|
|
|
}
|
|
|
|
|
2022-12-01 17:29:38 +00:00
|
|
|
#[clippy::msrv = "1.49"]
|
2021-03-25 18:29:11 +00:00
|
|
|
fn _msrv_1_49() {
|
|
|
|
// `bool::then` was stabilized in 1.50. Do not lint this
|
|
|
|
let _ = if foo() {
|
|
|
|
println!("true!");
|
|
|
|
Some(149)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-12-01 17:29:38 +00:00
|
|
|
#[clippy::msrv = "1.50"]
|
2021-03-25 18:29:11 +00:00
|
|
|
fn _msrv_1_50() {
|
|
|
|
let _ = if foo() {
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this could be simplified with `bool::then`
|
2021-03-25 18:29:11 +00:00
|
|
|
println!("true!");
|
|
|
|
Some(150)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn into_some<T>(v: T) -> Option<T> {
|
|
|
|
Some(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn into_none<T>() -> Option<T> {
|
|
|
|
None
|
|
|
|
}
|
2021-12-06 11:33:31 +00:00
|
|
|
|
|
|
|
// Should not warn
|
|
|
|
fn f(b: bool, v: Option<()>) -> Option<()> {
|
|
|
|
if b {
|
|
|
|
v?; // This is a potential early return, is not equivalent with `bool::then`
|
|
|
|
|
|
|
|
Some(())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2023-09-12 16:13:53 +00:00
|
|
|
|
|
|
|
fn issue11394(b: bool, v: Result<(), ()>) -> Result<(), ()> {
|
|
|
|
let x = if b {
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
let _ = v?;
|
|
|
|
Some(())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2024-01-11 16:27:03 +00:00
|
|
|
|
|
|
|
const fn issue12103(x: u32) -> Option<u32> {
|
|
|
|
// Should not issue an error in `const` context
|
|
|
|
if x > 42 { Some(150) } else { None }
|
|
|
|
}
|