summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/erasing_op.stderr
blob: 97941252355af1271f8836c7052ccaedbc9f61cc (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
error: this operation will always return zero. This is likely not the intended outcome
  --> $DIR/erasing_op.rs:35:5
   |
LL |     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:36:5
   |
LL |     0 & x;
   |     ^^^^^

error: this operation will always return zero. This is likely not the intended outcome
  --> $DIR/erasing_op.rs:37:5
   |
LL |     0 / x;
   |     ^^^^^

error: this operation will always return zero. This is likely not the intended outcome
  --> $DIR/erasing_op.rs:39:5
   |
LL |     0 * Vec1 { x: 5 };
   |     ^^^^^^^^^^^^^^^^^

error: this operation will always return zero. This is likely not the intended outcome
  --> $DIR/erasing_op.rs:40:5
   |
LL |     Vec1 { x: 5 } * 0;
   |     ^^^^^^^^^^^^^^^^^

error: aborting due to 5 previous errors