2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to the `_` wildcard arm
|
|
|
|
--> $DIR/match_same_arms.rs:11:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | Abc::A => 0,
|
|
|
|
| ^^^^^^^^^^^ help: try removing the arm
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2020-01-25 05:25:45 +00:00
|
|
|
= note: `-D clippy::match-same-arms` implied by `-D warnings`
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: `_` wildcard arm here
|
|
|
|
--> $DIR/match_same_arms.rs:13:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | _ => 0, //~ ERROR match arms have same body
|
|
|
|
| ^^^^^^
|
2018-02-08 19:26:50 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:17:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (1, .., 3) => 42,
|
2022-03-24 13:50:04 +00:00
|
|
|
| ----------^^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `(1, .., 3) | (.., 3)`
|
|
|
|
|
|
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
|
|
|
--> $DIR/match_same_arms.rs:18:9
|
|
|
|
|
|
|
|
|
LL | (.., 3) => 42, //~ ERROR match arms have same body
|
|
|
|
| ^^^^^^^^^^^^^
|
2018-02-08 19:26:50 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
|
|
|
--> $DIR/match_same_arms.rs:24:9
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 51 => 1, //~ ERROR match arms have same body
|
2022-03-24 13:50:04 +00:00
|
|
|
| --^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `51 | 42`
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:23:9
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 42 => 1,
|
2022-03-24 13:50:04 +00:00
|
|
|
| ^^^^^^^
|
2019-05-16 12:13:57 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:25:9
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 41 => 2,
|
2022-03-24 13:50:04 +00:00
|
|
|
| --^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `41 | 52`
|
|
|
|
|
|
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
|
|
|
--> $DIR/match_same_arms.rs:26:9
|
|
|
|
|
|
|
|
|
LL | 52 => 2, //~ ERROR match arms have same body
|
|
|
|
| ^^^^^^^
|
2019-05-20 08:22:13 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
|
|
|
--> $DIR/match_same_arms.rs:32:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2019-05-20 16:25:13 +00:00
|
|
|
LL | 2 => 2, //~ ERROR 2nd matched arms have same body
|
2022-03-24 13:50:04 +00:00
|
|
|
| -^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `2 | 1`
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:31:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 1 => 2,
|
2022-03-24 13:50:04 +00:00
|
|
|
| ^^^^^^
|
2019-05-20 08:22:13 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
|
|
|
--> $DIR/match_same_arms.rs:33:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 3 => 2, //~ ERROR 3rd matched arms have same body
|
2022-03-24 13:50:04 +00:00
|
|
|
| -^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `3 | 1`
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:31:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 1 => 2,
|
2022-03-24 13:50:04 +00:00
|
|
|
| ^^^^^^
|
2019-05-20 08:22:13 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
|
|
|
--> $DIR/match_same_arms.rs:32:9
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | 2 => 2, //~ ERROR 2nd matched arms have same body
|
|
|
|
| -^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `2 | 3`
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
|
|
|
--> $DIR/match_same_arms.rs:33:9
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | 3 => 2, //~ ERROR 3rd matched arms have same body
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
|
|
|
--> $DIR/match_same_arms.rs:50:17
|
|
|
|
|
|
|
|
|
LL | CommandInfo::External { name, .. } => name.to_string(),
|
|
|
|
| ----------------------------------^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: try merging the arm patterns: `CommandInfo::External { name, .. } | CommandInfo::BuiltIn { name, .. }`
|
|
|
|
|
|
|
|
|
= help: or try changing either arm body
|
|
|
|
note: other arm here
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:49:17
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
|
|
|
LL | CommandInfo::BuiltIn { name, .. } => name.to_string(),
|
2022-03-24 13:50:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-07-02 06:08:28 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|