2017-02-07 20:05:30 +00:00
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
25 | x + 0;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::identity-op` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:26:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
26 | x + (1 - 1);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:28:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
28 | 0 + x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:31:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
31 | x | (0);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
34 | x * 1;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:35:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
35 | 1 * x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: the operation is ineffective. Consider reducing it to `x`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:41:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
41 | -1 & x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
2017-09-30 08:33:15 +00:00
|
|
|
error: the operation is ineffective. Consider reducing it to `u`
|
2018-12-10 23:59:59 +00:00
|
|
|
--> $DIR/identity_op.rs:44:5
|
2017-09-30 08:33:15 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
44 | u & 255;
|
2017-09-30 08:33:15 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|