2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to the `_` wildcard arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:16:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | / 42 => {
|
2020-01-25 05:25:45 +00:00
|
|
|
LL | | foo();
|
|
|
|
LL | | let mut a = 42 + [23].len() as i32;
|
2024-01-02 06:00:20 +00:00
|
|
|
LL | | if true {
|
2020-01-25 05:25:45 +00:00
|
|
|
... |
|
|
|
|
LL | | },
|
2024-05-13 10:29:41 +00:00
|
|
|
LL | | _ => {
|
|
|
|
| |________^ help: try removing the arm
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
= help: or try changing either arm body
|
|
|
|
note: `_` wildcard arm here
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:25:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
LL | / _ => {
|
2020-01-25 05:25:45 +00:00
|
|
|
LL | | foo();
|
|
|
|
LL | | let mut a = 42 + [23].len() as i32;
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | | if true {
|
2020-01-25 05:25:45 +00:00
|
|
|
... |
|
|
|
|
LL | | a
|
|
|
|
LL | | },
|
|
|
|
| |_________^
|
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)]`
|
2020-01-25 05:25:45 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:39:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | 51 => foo(),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^
|
2020-01-25 05:25:45 +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 => foo(),
|
|
|
|
| ~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 42 => foo(),
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:45:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | None => 24,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | None | Some(_) => 24,
|
|
|
|
| ~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - Some(_) => 24,
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:67:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | (None, Some(a)) => bar(a),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | (None, Some(a)) | (Some(a), None) => bar(a),
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - (Some(a), None) => bar(a),
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:81:9
|
2023-12-30 13:31:19 +00:00
|
|
|
|
|
|
|
|
LL | (None, Some(a)) if a == 42 => a,
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-12-30 13:31:19 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | (None, Some(a)) | (Some(a), None) if a == 42 => a,
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - (Some(a), None) if a == 42 => a,
|
2023-12-30 13:31:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:86:9
|
2020-01-25 05:25:45 +00:00
|
|
|
|
|
|
|
|
LL | (Some(a), ..) => bar(a),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | (Some(a), ..) | (.., Some(a)) => bar(a),
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - (.., Some(a)) => bar(a),
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:120:9
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
|
|
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
|
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 | (Ok(x), Some(_)) | (Ok(_), Some(x)) => println!("ok {}", x),
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - (Ok(_), Some(x)) => println!("ok {}", x),
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
2020-01-30 03:06:42 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:136:9
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
|
|
|
LL | Ok(_) => println!("ok"),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | Ok(_) | Ok(3) => println!("ok"),
|
|
|
|
| ~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - Ok(3) => println!("ok"),
|
2020-01-30 03:06:42 +00:00
|
|
|
|
|
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:163:9
|
2021-03-12 14:30:50 +00:00
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
LL | / 1 => {
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | | empty!(0);
|
|
|
|
LL | | },
|
|
|
|
| |_________^
|
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
= help: try changing either arm body
|
|
|
|
help: or try merging the arm patterns
|
|
|
|
|
|
|
|
|
LL | 1 | 0 => {
|
|
|
|
| ~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 0 => {
|
|
|
|
LL - empty!(0);
|
|
|
|
LL - },
|
2021-03-12 14:30:50 +00:00
|
|
|
|
|
2020-10-28 22:36:07 +00:00
|
|
|
|
2022-03-24 13:50:04 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:214:9
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
LL | Foo::X(0) => 1,
|
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 | Foo::X(0) | Foo::Z(_) => 1,
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - Foo::Z(_) => 1,
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:224:9
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
LL | Foo::Z(_) => 1,
|
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 | Foo::Z(_) | Foo::X(0) => 1,
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - Foo::X(0) => 1,
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:247:9
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
LL | Some(Bar { y: 0, x: 5, .. }) => 1,
|
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 | Some(Bar { y: 0, x: 5, .. }) | Some(Bar { x: 0, y: 5, .. }) => 1,
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - Some(Bar { x: 0, y: 5, .. }) => 1,
|
2022-03-24 13:50:04 +00:00
|
|
|
|
|
|
|
|
|
2023-05-20 13:39:26 +00:00
|
|
|
error: this match arm has an identical body to another arm
|
2024-05-13 10:29:41 +00:00
|
|
|
--> tests/ui/match_same_arms2.rs:261:9
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | 1 => cfg!(not_enable),
|
2024-05-13 10:29:41 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2023-05-20 13:39:26 +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 | 0 => cfg!(not_enable),
|
|
|
|
| ~~~~~
|
|
|
|
help: and remove this obsolete arm
|
|
|
|
|
|
|
|
|
LL - 0 => cfg!(not_enable),
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
|
2024-05-13 10:29:41 +00:00
|
|
|
error: aborting due to 13 previous errors
|
2020-01-25 05:25:45 +00:00
|
|
|
|