mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
65 lines
2 KiB
Text
65 lines
2 KiB
Text
error: this could be simplified with `bool::then`
|
|
--> tests/ui/if_then_some_else_none.rs:6:13
|
|
|
|
|
LL | let _ = if foo() {
|
|
| _____________^
|
|
LL | |
|
|
LL | | println!("true!");
|
|
LL | | Some("foo")
|
|
LL | | } else {
|
|
LL | | None
|
|
LL | | };
|
|
| |_____^
|
|
|
|
|
= help: consider using `bool::then` like: `foo().then(|| { /* snippet */ "foo" })`
|
|
= note: `-D clippy::if-then-some-else-none` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::if_then_some_else_none)]`
|
|
|
|
error: this could be simplified with `bool::then`
|
|
--> tests/ui/if_then_some_else_none.rs:15:13
|
|
|
|
|
LL | let _ = if matches!(true, true) {
|
|
| _____________^
|
|
LL | |
|
|
LL | | println!("true!");
|
|
LL | | Some(matches!(true, false))
|
|
LL | | } else {
|
|
LL | | None
|
|
LL | | };
|
|
| |_____^
|
|
|
|
|
= help: consider using `bool::then` like: `matches!(true, true).then(|| { /* snippet */ matches!(true, false) })`
|
|
|
|
error: this could be simplified with `bool::then_some`
|
|
--> tests/ui/if_then_some_else_none.rs:25:28
|
|
|
|
|
LL | let _ = x.and_then(|o| if o < 32 { Some(o) } else { None });
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using `bool::then_some` like: `(o < 32).then_some(o)`
|
|
|
|
error: this could be simplified with `bool::then_some`
|
|
--> tests/ui/if_then_some_else_none.rs:30:13
|
|
|
|
|
LL | let _ = if !x { Some(0) } else { None };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using `bool::then_some` like: `(!x).then_some(0)`
|
|
|
|
error: this could be simplified with `bool::then`
|
|
--> tests/ui/if_then_some_else_none.rs:86:13
|
|
|
|
|
LL | let _ = if foo() {
|
|
| _____________^
|
|
LL | |
|
|
LL | | println!("true!");
|
|
LL | | Some(150)
|
|
LL | | } else {
|
|
LL | | None
|
|
LL | | };
|
|
| |_____^
|
|
|
|
|
= help: consider using `bool::then` like: `foo().then(|| { /* snippet */ 150 })`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|