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