2020-12-20 16:19:49 +00:00
|
|
|
error: this looks like an `else {..}` but the `else` is missing
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:16:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`
|
|
|
|
= note: to remove this lint, add the missing `else` or add a new line before the next block
|
|
|
|
|
|
|
|
error: this looks like an `else if` but the `else` is missing
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:20:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } if foo() {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
|
|
|
|
|
|
|
|
error: this looks like an `else if` but the `else` is missing
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:27:10
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } if foo() {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
|
|
|
|
|
|
|
|
error: this looks like an `else if` but the `else` is missing
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:35:10
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } if foo() {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
|
|
|
|
|
|
|
|
error: this is an `else {..}` but the formatting might hide it
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:44:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | } else
|
|
|
|
| ______^
|
|
|
|
LL | | {
|
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: this is an `else if` but the formatting might hide it
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:56:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | } else
|
2020-12-20 16:19:49 +00:00
|
|
|
| ______^
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | | if foo() { // the span of the above error should continue here
|
2020-12-20 16:19:49 +00:00
|
|
|
| |____^
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
error: this is an `else if` but the formatting might hide it
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:61:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | }
|
2020-12-20 16:19:49 +00:00
|
|
|
| ______^
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | | else
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | if foo() { // the span of the above error should continue here
|
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: this is an `else {..}` but the formatting might hide it
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:88:6
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | }
|
|
|
|
| ______^
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | |
|
2020-12-20 16:19:49 +00:00
|
|
|
LL | | else
|
2021-04-22 09:31:13 +00:00
|
|
|
LL | | {
|
2020-12-20 16:19:49 +00:00
|
|
|
| |____^
|
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
|
|
|
|
|
|
|
|
error: this is an `else {..}` but the formatting might hide it
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/suspicious_else_formatting.rs:96:6
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | }
|
|
|
|
| ______^
|
|
|
|
LL | | else
|
|
|
|
LL | |
|
|
|
|
LL | | {
|
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2020-12-20 16:19:49 +00:00
|
|
|
|