mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
16 lines
361 B
Text
16 lines
361 B
Text
|
error: this `if` has the same condition as a previous `if`
|
||
|
--> $DIR/ifs_same_cond.rs:15:15
|
||
|
|
|
||
|
LL | } else if x.get() {
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
note: same as this
|
||
|
--> $DIR/ifs_same_cond.rs:13:8
|
||
|
|
|
||
|
LL | if x.get() {
|
||
|
| ^^^^^^^
|
||
|
= note: `-D clippy::ifs-same-cond` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|