blob: d9dc2a55f5b629bc472e1369a2ba344437d596ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
--> tests/ui/formatting.rs:13:6
|
LL | a =- 35;
| ^^^^
|
= note: to remove this lint, use either `-=` or `= -`
= note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::suspicious_assignment_formatting)]`
error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
--> tests/ui/formatting.rs:17:6
|
LL | a =* &191;
| ^^^^
|
= note: to remove this lint, use either `*=` or `= *`
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
--> tests/ui/formatting.rs:23:6
|
LL | b =! false;
| ^^^^
|
= note: to remove this lint, use either `!=` or `= !`
error: possibly missing a comma here
--> tests/ui/formatting.rs:35:19
|
LL | -1, -2, -3 // <= no comma here
| ^
|
= note: to remove this lint, add a comma or write the expr in a single line
= note: `#[deny(clippy::possible_missing_comma)]` on by default
error: possibly missing a comma here
--> tests/ui/formatting.rs:42:19
|
LL | -1, -2, -3 // <= no comma here
| ^
|
= note: to remove this lint, add a comma or write the expr in a single line
error: possibly missing a comma here
--> tests/ui/formatting.rs:82:11
|
LL | -1
| ^
|
= note: to remove this lint, add a comma or write the expr in a single line
error: aborting due to 6 previous errors
|