2019-09-24 16:55:05 -05:00
|
|
|
error: `if` chain can be rewritten with `match`
|
|
|
|
--> $DIR/comparison_chain.rs:14:5
|
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if x < y {
|
|
|
|
LL | | b()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::comparison-chain` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::comparison_chain)]`
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:28:5
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if x < y {
|
2023-08-24 14:32:12 -05:00
|
|
|
... |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | c()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:37:5
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if y > x {
|
2023-08-24 14:32:12 -05:00
|
|
|
... |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | c()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:46:5
|
2019-09-24 16:55:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x > 1 {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if x < 1 {
|
2023-08-24 14:32:12 -05:00
|
|
|
... |
|
2019-09-24 16:55:05 -05:00
|
|
|
LL | | c()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-09-24 16:55:05 -05:00
|
|
|
|
2019-11-23 15:35:21 -06:00
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:121:5
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-11-23 15:35:21 -06:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if x < y {
|
|
|
|
LL | | b()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:128:5
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-11-23 15:35:21 -06:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if x < y {
|
2023-08-24 14:32:12 -05:00
|
|
|
... |
|
2019-11-23 15:35:21 -06:00
|
|
|
LL | | c()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
error: `if` chain can be rewritten with `match`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/comparison_chain.rs:137:5
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
|
LL | / if x > y {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2019-11-23 15:35:21 -06:00
|
|
|
LL | | a()
|
|
|
|
LL | | } else if y > x {
|
2023-08-24 14:32:12 -05:00
|
|
|
... |
|
2019-11-23 15:35:21 -06:00
|
|
|
LL | | c()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider rewriting the `if` chain to use `cmp` and `match`
|
2019-11-23 15:35:21 -06:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2019-09-24 16:55:05 -05:00
|
|
|
|