rust/tests/ui/erasing_op.stderr
2018-10-06 09:43:08 -07:00

22 lines
569 B
Text

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