2018-12-10 14:46:01 +00:00
|
|
|
error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:16: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 `.. = (* ..)`
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:17: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 `.. = (! ..)`
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:20: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
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:29: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
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:33: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
|
|
|
|
2020-01-23 21:27:01 +00:00
|
|
|
error: possibly missing a comma here
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/formatting.rs:70:11
|
2020-01-23 21:27:01 +00:00
|
|
|
|
|
|
|
|
LL | -1
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|