rust-clippy/tests/ui/formatting.stderr

91 lines
2.7 KiB
Text
Raw Normal View History

error: this looks like an `else if` but the `else` is missing
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:25:6
|
2018-10-06 16:18:06 +00:00
25 | } 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
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:32:10
|
2018-10-06 16:18:06 +00:00
32 | } 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
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:40:10
|
2018-10-06 16:18:06 +00:00
40 | } 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
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:49:6
|
2018-10-06 16:18:06 +00:00
49 | } else
| ______^
2018-10-06 16:18:06 +00:00
50 | | 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
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:54:6
|
2018-10-06 16:18:06 +00:00
54 | }
| ______^
2018-10-06 16:18:06 +00:00
55 | | else
56 | | 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 `.. = (- ..)`
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:81:6
|
2018-10-06 16:18:06 +00:00
81 | 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 `.. = (* ..)`
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:82:6
|
2018-10-06 16:18:06 +00:00
82 | a =* &191;
| ^^^^
|
= note: to remove this lint, use either `*=` or `= *`
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:85:6
|
2018-10-06 16:18:06 +00:00
85 | b =! false;
| ^^^^
|
= note: to remove this lint, use either `!=` or `= !`
error: possibly missing a comma here
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:94:19
|
2018-10-06 16:18:06 +00:00
94 | -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
2018-10-06 16:18:06 +00:00
--> $DIR/formatting.rs:98:19
|
2018-10-06 16:18:06 +00:00
98 | -1, -2, -3 // <= no comma here
| ^
|
= note: to remove this lint, add a comma or write the expr in a single line
2018-01-16 16:06:27 +00:00
error: aborting due to 10 previous errors