2020-01-15 06:56:56 +00:00
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:28:5
|
2020-01-15 06:56:56 +00:00
|
|
|
|
|
|
|
|
LL | / match (a, b, c) {
|
|
|
|
LL | | (x, y, z) => {
|
|
|
|
LL | | println!("{} {} {}", x, y, z);
|
|
|
|
LL | | },
|
|
|
|
LL | | }
|
2020-01-19 10:07:13 +00:00
|
|
|
| |_____^
|
2020-01-15 06:56:56 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::match-single-binding` implied by `-D warnings`
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-19 10:07:13 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let (x, y, z) = (a, b, c);
|
|
|
|
LL + {
|
|
|
|
LL + println!("{} {} {}", x, y, z);
|
|
|
|
LL + }
|
2020-01-19 10:07:13 +00:00
|
|
|
|
|
2020-01-15 06:56:56 +00:00
|
|
|
|
2020-01-26 16:03:39 +00:00
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:34:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match (a, b, c) {
|
|
|
|
LL | | (x, y, z) => println!("{} {} {}", x, y, z),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let (x, y, z) = (a, b, c);
|
|
|
|
LL + println!("{} {} {}", x, y, z);
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be replaced by its body itself
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:51:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match a {
|
|
|
|
LL | | _ => println!("whatever"),
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: consider using the match body instead: `println!("whatever");`
|
|
|
|
|
|
|
|
error: this match could be replaced by its body itself
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:55:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match a {
|
|
|
|
LL | | _ => {
|
|
|
|
LL | | let x = 29;
|
|
|
|
LL | | println!("x has a value of {}", x);
|
|
|
|
LL | | },
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: consider using the match body instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ {
|
|
|
|
LL + let x = 29;
|
|
|
|
LL + println!("x has a value of {}", x);
|
|
|
|
LL + }
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be replaced by its body itself
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:62:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match a {
|
|
|
|
LL | | _ => {
|
|
|
|
LL | | let e = 5 * a;
|
|
|
|
LL | | if e >= 5 {
|
|
|
|
... |
|
|
|
|
LL | | },
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: consider using the match body instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ {
|
|
|
|
LL + let e = 5 * a;
|
|
|
|
LL + if e >= 5 {
|
|
|
|
LL + println!("e is superior to 5");
|
|
|
|
LL + }
|
|
|
|
LL + }
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:72:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match p {
|
|
|
|
LL | | Point { x, y } => println!("Coords: ({}, {})", x, y),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let Point { x, y } = p;
|
|
|
|
LL + println!("Coords: ({}, {})", x, y);
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:76:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match p {
|
|
|
|
LL | | Point { x: x1, y: y1 } => println!("Coords: ({}, {})", x1, y1),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let Point { x: x1, y: y1 } = p;
|
|
|
|
LL + println!("Coords: ({}, {})", x1, y1);
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:81:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | ref r => println!("Got a reference to {}", r),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let ref r = x;
|
|
|
|
LL + println!("Got a reference to {}", r);
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:86:5
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | ref mut mr => println!("Got a mutable reference to {}", mr),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let ref mut mr = x;
|
|
|
|
LL + println!("Got a mutable reference to {}", mr);
|
2020-01-26 16:03:39 +00:00
|
|
|
|
|
|
|
|
|
2020-03-08 21:57:35 +00:00
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:90:5
|
2020-03-08 21:57:35 +00:00
|
|
|
|
|
|
|
|
LL | / let product = match coords() {
|
|
|
|
LL | | Point { x, y } => x * y,
|
|
|
|
LL | | };
|
|
|
|
| |______^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-03-08 21:57:35 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ let Point { x, y } = coords();
|
|
|
|
LL + let product = x * y;
|
2020-03-08 21:57:35 +00:00
|
|
|
|
|
|
|
|
|
2020-03-21 19:26:55 +00:00
|
|
|
error: this match could be written as a `let` statement
|
2020-03-27 19:36:00 +00:00
|
|
|
--> $DIR/match_single_binding.rs:98:18
|
2020-03-21 19:26:55 +00:00
|
|
|
|
|
|
|
|
LL | .map(|i| match i.unwrap() {
|
|
|
|
| __________________^
|
|
|
|
LL | | unwrapped => unwrapped,
|
|
|
|
LL | | })
|
|
|
|
| |_________^
|
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
help: consider using a `let` statement
|
2020-03-21 19:26:55 +00:00
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ .map(|i| {
|
|
|
|
LL + let unwrapped = i.unwrap();
|
|
|
|
LL + unwrapped
|
|
|
|
LL ~ })
|
2020-03-21 19:26:55 +00:00
|
|
|
|
|
|
|
|
|
2022-02-26 13:26:21 +00:00
|
|
|
error: this match could be replaced by its body itself
|
|
|
|
--> $DIR/match_single_binding.rs:124:5
|
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | // =>
|
|
|
|
LL | | _ => println!("Not an array index start"),
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: consider using the match body instead: `println!("Not an array index start");`
|
|
|
|
|
2022-05-21 11:24:00 +00:00
|
|
|
error: this assignment could be simplified
|
|
|
|
--> $DIR/match_single_binding.rs:134:5
|
|
|
|
|
|
|
|
|
LL | / val = match val.split_at(idx) {
|
|
|
|
LL | | (pre, suf) => {
|
|
|
|
LL | | println!("{}", pre);
|
|
|
|
LL | | suf
|
|
|
|
LL | | },
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: consider removing the `match` expression
|
|
|
|
|
|
|
|
|
LL ~ let (pre, suf) = val.split_at(idx);
|
|
|
|
LL + val = {
|
|
|
|
LL + println!("{}", pre);
|
|
|
|
LL + suf
|
|
|
|
LL ~ };
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
2020-01-15 06:56:56 +00:00
|
|
|
|