2018-12-10 15:46:01 +01:00
|
|
|
error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
|
2021-07-20 23:23:22 -04:00
|
|
|
--> $DIR/formatting.rs:16:6
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | a =- 35;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, use either `-=` or `= -`
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::suspicious_assignment_formatting)]`
|
2018-12-10 15:46:01 +01:00
|
|
|
|
|
|
|
error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/formatting.rs:19:6
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | a =* &191;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, use either `*=` or `= *`
|
2018-12-10 15:46:01 +01:00
|
|
|
|
|
|
|
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/formatting.rs:24:6
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | b =! false;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, use either `!=` or `= !`
|
2018-12-10 15:46:01 +01:00
|
|
|
|
2017-02-07 21:05:30 +01:00
|
|
|
error: possibly missing a comma here
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/formatting.rs:35:19
|
2018-12-27 16:57:55 +01:00
|
|
|
|
|
|
|
|
LL | -1, -2, -3 // <= no comma here
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::possible-missing-comma` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::possible_missing_comma)]`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: possibly missing a comma here
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/formatting.rs:41:19
|
2018-12-27 16:57:55 +01: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 21:05:30 +01:00
|
|
|
|
2020-01-24 00:27:01 +03:00
|
|
|
error: possibly missing a comma here
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/formatting.rs:80:11
|
2020-01-24 00:27:01 +03:00
|
|
|
|
|
|
|
|
LL | -1
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: to remove this lint, add a comma or write the expr in a single line
|
|
|
|
|
2020-12-20 17:19:49 +01:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|