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