2019-05-20 08:22:13 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:13:14
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | _ => 0, //~ ERROR match arms have same body
|
|
|
|
| ^
|
|
|
|
|
|
2020-01-25 05:25:45 +00:00
|
|
|
= note: `-D clippy::match-same-arms` implied by `-D warnings`
|
2018-02-08 19:26:50 +00:00
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:11:19
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Abc::A => 0,
|
|
|
|
| ^
|
2020-01-06 06:36:33 +00:00
|
|
|
note: `Abc::A` has the same arm body as the `_` wildcard, consider removing it
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:11:19
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Abc::A => 0,
|
|
|
|
| ^
|
2018-02-08 19:26:50 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:18:20
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (.., 3) => 42, //~ ERROR match arms have same body
|
|
|
|
| ^^
|
|
|
|
|
|
2018-02-08 19:26:50 +00:00
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:17:23
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (1, .., 3) => 42,
|
|
|
|
| ^^
|
2019-05-20 08:22:13 +00:00
|
|
|
help: consider refactoring into `(1, .., 3) | (.., 3)`
|
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,
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^^^^^^^^^^
|
2018-02-08 19:26:50 +00:00
|
|
|
|
2019-05-16 12:13:57 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:24:15
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 51 => 1, //~ ERROR match arms have same body
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:23:15
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 42 => 1,
|
|
|
|
| ^
|
2019-05-20 08:22:13 +00:00
|
|
|
help: consider refactoring into `42 | 51`
|
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,
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^^
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:26:15
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 52 => 2, //~ ERROR match arms have same body
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:25:15
|
2019-05-16 12:13:57 +00:00
|
|
|
|
|
|
|
|
LL | 41 => 2,
|
|
|
|
| ^
|
2019-05-20 08:22:13 +00:00
|
|
|
help: consider refactoring into `41 | 52`
|
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,
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:32:14
|
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
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:31:14
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 1 => 2,
|
|
|
|
| ^
|
|
|
|
help: consider refactoring into `1 | 2`
|
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,
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:33:14
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 3 => 2, //~ ERROR 3rd matched arms have same body
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:31:14
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 1 => 2,
|
|
|
|
| ^
|
|
|
|
help: consider refactoring into `1 | 3`
|
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,
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:33:14
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
|
LL | 3 => 2, //~ ERROR 3rd matched arms have same body
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:32:14
|
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
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^
|
|
|
|
help: consider refactoring into `2 | 3`
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $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
|
2019-05-20 08:22:13 +00:00
|
|
|
| ^
|
2019-05-16 12:13:57 +00:00
|
|
|
|
2019-07-02 06:08:28 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:50:55
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
|
|
|
LL | CommandInfo::External { name, .. } => name.to_string(),
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: same as this
|
2020-01-25 05:25:45 +00:00
|
|
|
--> $DIR/match_same_arms.rs:49:54
|
2019-07-02 06:08:28 +00:00
|
|
|
|
|
|
|
|
LL | CommandInfo::BuiltIn { name, .. } => name.to_string(),
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
help: consider refactoring into `CommandInfo::BuiltIn { name, .. } | CommandInfo::External { name, .. }`
|
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(),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-01-25 05:25:45 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|