2020-01-06 06:36:33 +00:00
|
|
|
error: this `if` has the same condition as a previous `if`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:14:15
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | } else if b {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: same as this
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:13:8
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | if b {
|
|
|
|
| ^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::ifs-same-cond` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::ifs_same_cond)]`
|
2019-01-02 06:59:48 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `if` has the same condition as a previous `if`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:19:15
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | } else if a == 1 {
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
note: same as this
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:18:8
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | if a == 1 {
|
|
|
|
| ^^^^^^
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: this `if` has the same condition as a previous `if`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:25:15
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | } else if 2 * a == 1 {
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: same as this
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:23:8
|
2019-01-02 06:59:48 +00:00
|
|
|
|
|
|
|
|
LL | if 2 * a == 1 {
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2023-03-24 13:04:35 +00:00
|
|
|
error: this `if` has the same condition as a previous `if`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:58:15
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
LL | } else if a.contains("ah") {
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: same as this
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/ifs_same_cond.rs:57:8
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
LL | if a.contains("ah") {
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-01-02 06:59:48 +00:00
|
|
|
|