2022-03-07 10:12:35 +00:00
|
|
|
error: this match expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:15:18
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | let _: i32 = match x {
|
|
|
|
| __________________^
|
2022-03-07 10:12:35 +00:00
|
|
|
LL | | 0 => 0,
|
|
|
|
LL | | 1 => 1,
|
|
|
|
LL | | 2 => 2,
|
|
|
|
LL | | _ => x,
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | | };
|
2022-03-07 10:12:35 +00:00
|
|
|
| |_____^ help: replace it with: `x`
|
|
|
|
|
|
2022-03-10 01:44:25 +00:00
|
|
|
= note: `-D clippy::needless-match` implied by `-D warnings`
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
|
|
error: this match expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:24:21
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | let _: Choice = match se {
|
|
|
|
| _____________________^
|
|
|
|
LL | | Choice::A => Choice::A,
|
|
|
|
LL | | Choice::B => Choice::B,
|
|
|
|
LL | | Choice::C => Choice::C,
|
|
|
|
LL | | Choice::D => Choice::D,
|
|
|
|
LL | | };
|
2022-03-07 10:12:35 +00:00
|
|
|
| |_____^ help: replace it with: `se`
|
|
|
|
|
|
|
|
error: this match expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:46:26
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | let _: Option<i32> = match x {
|
|
|
|
| __________________________^
|
2022-03-07 10:12:35 +00:00
|
|
|
LL | | Some(a) => Some(a),
|
|
|
|
LL | | None => None,
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | | };
|
|
|
|
| |_____^ help: replace it with: `x`
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
|
|
error: this match expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:62:31
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | let _: Result<i32, i32> = match Ok(1) {
|
|
|
|
| _______________________________^
|
2022-03-07 10:12:35 +00:00
|
|
|
LL | | Ok(a) => Ok(a),
|
|
|
|
LL | | Err(err) => Err(err),
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | | };
|
2022-03-07 10:12:35 +00:00
|
|
|
| |_____^ help: replace it with: `Ok(1)`
|
|
|
|
|
|
|
|
error: this match expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:66:31
|
2022-03-07 10:12:35 +00:00
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | let _: Result<i32, i32> = match func_ret_err(0_i32) {
|
|
|
|
| _______________________________^
|
2022-03-07 10:12:35 +00:00
|
|
|
LL | | Err(err) => Err(err),
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | | Ok(a) => Ok(a),
|
2022-03-07 10:12:35 +00:00
|
|
|
LL | | };
|
|
|
|
| |_____^ help: replace it with: `func_ret_err(0_i32)`
|
|
|
|
|
2022-03-08 09:37:53 +00:00
|
|
|
error: this if-let expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:73:5
|
2022-03-08 09:37:53 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(a) = Some(1) { Some(a) } else { None }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `Some(1)`
|
|
|
|
|
|
|
|
error: this if-let expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:77:30
|
2022-03-08 09:37:53 +00:00
|
|
|
|
|
|
|
|
LL | let _: Result<(), i32> = if let Err(e) = x { Err(e) } else { x };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `x`
|
|
|
|
|
|
|
|
error: this if-let expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:78:30
|
2022-03-08 09:37:53 +00:00
|
|
|
|
|
|
|
|
LL | let _: Result<(), i32> = if let Ok(val) = x { Ok(val) } else { x };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `x`
|
|
|
|
|
|
|
|
error: this if-let expression is unnecessary
|
2022-03-10 01:44:25 +00:00
|
|
|
--> $DIR/needless_match.rs:84:21
|
2022-03-08 09:37:53 +00:00
|
|
|
|
|
2022-03-08 10:15:11 +00:00
|
|
|
LL | let _: Choice = if let Choice::A = x {
|
|
|
|
| _____________________^
|
2022-03-08 09:37:53 +00:00
|
|
|
LL | | Choice::A
|
|
|
|
LL | | } else if let Choice::B = x {
|
|
|
|
LL | | Choice::B
|
|
|
|
... |
|
|
|
|
LL | | x
|
2022-03-08 10:15:11 +00:00
|
|
|
LL | | };
|
2022-03-08 09:37:53 +00:00
|
|
|
| |_____^ help: replace it with: `x`
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2022-03-07 10:12:35 +00:00
|
|
|
|