mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
80 lines
2.7 KiB
Text
80 lines
2.7 KiB
Text
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:8:5
|
||
|
|
|
||
|
8 | a += a + 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/assign_ops2.rs:5:8
|
||
|
|
|
||
|
5 | #[deny(misrefactored_assign_op)]
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
help: replace it with
|
||
|
| a += 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:11:5
|
||
|
|
|
||
|
11 | a += 1 + a; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a += 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:14:5
|
||
|
|
|
||
|
14 | a -= a - 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a -= 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:17:5
|
||
|
|
|
||
|
17 | a *= a * 99; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a *= 99; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:20:5
|
||
|
|
|
||
|
20 | a *= 42 * a; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a *= 42; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:23:5
|
||
|
|
|
||
|
23 | a /= a / 2; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a /= 2; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:26:5
|
||
|
|
|
||
|
26 | a %= a % 5; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a %= 5; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: variable appears on both sides of an assignment operation
|
||
|
--> $DIR/assign_ops2.rs:29:5
|
||
|
|
|
||
|
29 | a &= a & 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
help: replace it with
|
||
|
| a &= 1; //~ ERROR variable appears on both sides of an assignment operation
|
||
|
|
||
|
error: aborting due to 8 previous errors
|
||
|
|