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-toml/ifs_same_cond/ifs_same_cond.rs:15:15
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
LL | } else if x.get() {
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
note: same as this
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/ifs_same_cond/ifs_same_cond.rs:13:8
|
2023-03-24 13:04:35 +00:00
|
|
|
|
|
|
|
|
LL | if x.get() {
|
|
|
|
| ^^^^^^^
|
|
|
|
= 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)]`
|
2023-03-24 13:04:35 +00:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-03-24 13:04:35 +00:00
|
|
|
|