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