2018-10-19 22:04:15 +00:00
|
|
|
error: this looks like an `else {..}` but the `else` is missing
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:12:6
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } {
|
2018-12-10 14:46:01 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`
|
2018-10-19 22:04:15 +00:00
|
|
|
= 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:16:6
|
2018-10-19 22:04:15 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } if foo() {
|
2018-10-19 22:04:15 +00:00
|
|
|
| ^
|
|
|
|
|
|
2018-12-10 14:46:01 +00:00
|
|
|
= 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:23:10
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } if foo() {
|
2018-12-10 14:46:01 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:31:10
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } if foo() {
|
2018-12-10 14:46:01 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
|
|
|
|
|
2018-10-19 22:04:15 +00:00
|
|
|
error: this is an `else {..}` but the formatting might hide it
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:40:6
|
2018-10-19 22:04:15 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } else
|
2018-10-19 22:04:15 +00:00
|
|
|
| ______^
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | {
|
2018-10-19 22:04:15 +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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:45:6
|
2018-10-19 22:04:15 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | }
|
2018-10-19 22:04:15 +00:00
|
|
|
| ______^
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | else
|
|
|
|
LL | | {
|
2018-10-19 22:04:15 +00:00
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
|
|
|
|
|
2018-12-10 14:46:01 +00:00
|
|
|
error: this is an `else if` but the formatting might hide it
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:51:6
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } else
|
2018-12-10 14:46:01 +00:00
|
|
|
| ______^
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | if foo() { // the span of the above error should continue here
|
2018-12-10 14:46:01 +00:00
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:56:6
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | }
|
2018-12-10 14:46:01 +00:00
|
|
|
| ______^
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | else
|
|
|
|
LL | | if foo() { // the span of the above error should continue here
|
2018-12-10 14:46:01 +00:00
|
|
|
| |____^
|
|
|
|
|
|
|
|
|
= 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 `.. = (- ..)`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:97:6
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | a =- 35;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
|
|
|
|
= note: to remove this lint, use either `-=` or `= -`
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
|
|
error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:98:6
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | a =* &191;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, use either `*=` or `= *`
|
2018-12-10 14:46:01 +00:00
|
|
|
|
|
|
|
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:101:6
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | b =! false;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, use either `!=` or `= !`
|
2018-12-10 14:46:01 +00:00
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: possibly missing a comma here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:110:19
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | -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
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: possibly missing a comma here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/formatting.rs:114:19
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | -1, -2, -3 // <= no comma here
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-19 22:04:15 +00:00
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|