2018-04-05 19:18:38 +00:00
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:8:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | Some(y) => {
|
|
|
|
LL | | println!("{:?}", y);
|
|
|
|
LL | | },
|
|
|
|
LL | | _ => (),
|
|
|
|
LL | | };
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::single-match` implied by `-D warnings`
|
2018-12-10 05:27:19 +00:00
|
|
|
help: try this
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let Some(y) = x {
|
2020-02-04 15:13:06 +00:00
|
|
|
LL | println!("{:?}", y);
|
|
|
|
LL | };
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:16:5
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | // Note the missing block braces.
|
|
|
|
LL | | // We suggest `if let Some(y) = x { .. }` because the macro
|
|
|
|
LL | | // is expanded before we can do anything.
|
|
|
|
LL | | Some(y) => println!("{:?}", y),
|
|
|
|
LL | | _ => (),
|
|
|
|
LL | | }
|
2018-10-27 12:45:02 +00:00
|
|
|
| |_____^ help: try this: `if let Some(y) = x { println!("{:?}", y) }`
|
|
|
|
|
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:25:5
|
2018-10-27 12:45:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match z {
|
2019-06-01 05:54:47 +00:00
|
|
|
LL | | (2..=3, 7..=9) => dummy(),
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | _ => {},
|
|
|
|
LL | | };
|
2019-06-01 05:54:47 +00:00
|
|
|
| |_____^ help: try this: `if let (2..=3, 7..=9) = z { dummy() }`
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:54:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | Some(y) => dummy(),
|
|
|
|
LL | | None => (),
|
|
|
|
LL | | };
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_____^ help: try this: `if let Some(y) = x { dummy() }`
|
|
|
|
|
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:59:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match y {
|
|
|
|
LL | | Ok(y) => dummy(),
|
|
|
|
LL | | Err(..) => (),
|
|
|
|
LL | | };
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_____^ help: try this: `if let Ok(y) = y { dummy() }`
|
|
|
|
|
|
|
|
error: you seem to be trying to use match for destructuring a single pattern. Consider using `if let`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_match.rs:66:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match c {
|
|
|
|
LL | | Cow::Borrowed(..) => dummy(),
|
|
|
|
LL | | Cow::Owned(..) => (),
|
|
|
|
LL | | };
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_____^ help: try this: `if let Cow::Borrowed(..) = c { dummy() }`
|
|
|
|
|
2018-10-27 12:45:02 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-04-05 19:18:38 +00:00
|
|
|
|