2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to the `_` wildcard arm
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:12:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | Abc::A => 0,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: try removing the arm
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: `_` wildcard arm here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:14:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | _ => 0,
|
2022-03-24 13:50:04 +00:00
|
|
|
| ^^^^^^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::match-same-arms` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
|
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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:18:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (1, .., 3) => 42,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | (1, .., 3) | (.., 3) => 42,
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - (.., 3) => 42,
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:25:9
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | 51 => 1,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 51 | 42 => 1,
|
|
|
|
| ~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 42 => 1,
|
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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:26:9
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 41 => 2,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 41 | 52 => 2,
|
|
|
|
| ~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 52 => 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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:33:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | 2 => 2,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 2 | 1 => 2,
|
|
|
|
| ~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 1 => 2,
|
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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:35:9
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | 3 => 2,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 3 | 1 => 2,
|
|
|
|
| ~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 1 => 2,
|
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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:33:9
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | 2 => 2,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 2 | 3 => 2,
|
|
|
|
| ~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 3 => 2,
|
|
|
|
LL +
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/match_same_arms.rs:52:17
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
LL | CommandInfo::External { name, .. } => name.to_string(),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | CommandInfo::External { name, .. } | CommandInfo::BuiltIn { name, .. } => name.to_string(),
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - CommandInfo::BuiltIn { name, .. } => name.to_string(),
|
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
|
|
|
|