mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
90 lines
2.7 KiB
Text
90 lines
2.7 KiB
Text
error: this looks like an `else if` but the `else` is missing
|
|
--> $DIR/formatting.rs:21:6
|
|
|
|
|
21 | } if foo() {
|
|
| ^
|
|
|
|
|
= 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 second `if`
|
|
|
|
error: this looks like an `else if` but the `else` is missing
|
|
--> $DIR/formatting.rs:28:10
|
|
|
|
|
28 | } 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
|
|
--> $DIR/formatting.rs:36:10
|
|
|
|
|
36 | } 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 if` but the formatting might hide it
|
|
--> $DIR/formatting.rs:45:6
|
|
|
|
|
45 | } else
|
|
| ______^
|
|
46 | | 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`
|
|
|
|
error: this is an `else if` but the formatting might hide it
|
|
--> $DIR/formatting.rs:50:6
|
|
|
|
|
50 | }
|
|
| ______^
|
|
51 | | else
|
|
52 | | 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`
|
|
|
|
error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
|
|
--> $DIR/formatting.rs:77:6
|
|
|
|
|
77 | a =- 35;
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
|
|
= note: to remove this lint, use either `-=` or `= -`
|
|
|
|
error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
|
|
--> $DIR/formatting.rs:78:6
|
|
|
|
|
78 | a =* &191;
|
|
| ^^^^
|
|
|
|
|
= note: to remove this lint, use either `*=` or `= *`
|
|
|
|
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
|
|
--> $DIR/formatting.rs:81:6
|
|
|
|
|
81 | b =! false;
|
|
| ^^^^
|
|
|
|
|
= note: to remove this lint, use either `!=` or `= !`
|
|
|
|
error: possibly missing a comma here
|
|
--> $DIR/formatting.rs:90:19
|
|
|
|
|
90 | -1, -2, -3 // <= no comma here
|
|
| ^
|
|
|
|
|
= note: `-D clippy::possible-missing-comma` implied by `-D warnings`
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
|
|
|
error: possibly missing a comma here
|
|
--> $DIR/formatting.rs:94:19
|
|
|
|
|
94 | -1, -2, -3 // <= no comma here
|
|
| ^
|
|
|
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
|
|
|
error: aborting due to 10 previous errors
|
|
|