23 lines
569 B
Plaintext
23 lines
569 B
Plaintext
error: this operation will always return zero. This is likely not the intended outcome
|
|
--> $DIR/erasing_op.rs:19:5
|
|
|
|
|
19 | x * 0;
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::erasing-op` implied by `-D warnings`
|
|
|
|
error: this operation will always return zero. This is likely not the intended outcome
|
|
--> $DIR/erasing_op.rs:20:5
|
|
|
|
|
20 | 0 & x;
|
|
| ^^^^^
|
|
|
|
error: this operation will always return zero. This is likely not the intended outcome
|
|
--> $DIR/erasing_op.rs:21:5
|
|
|
|
|
21 | 0 / x;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|