summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/bit_masks.stderr
blob: dc5ad6dfbdff99b390755739f763c1eb3f0cc5a9 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
error: &-masking with zero
  --> $DIR/bit_masks.rs:14:5
   |
LL |     x & 0 == 0;
   |     ^^^^^^^^^^
   |
   = note: `-D clippy::bad-bit-mask` implied by `-D warnings`

error: this operation will always return zero. This is likely not the intended outcome
  --> $DIR/bit_masks.rs:14:5
   |
LL |     x & 0 == 0;
   |     ^^^^^
   |
   = note: `#[deny(clippy::erasing_op)]` on by default

error: incompatible bit mask: `_ & 2` can never be equal to `1`
  --> $DIR/bit_masks.rs:17:5
   |
LL |     x & 2 == 1;
   |     ^^^^^^^^^^

error: incompatible bit mask: `_ | 3` can never be equal to `2`
  --> $DIR/bit_masks.rs:21:5
   |
LL |     x | 3 == 2;
   |     ^^^^^^^^^^

error: incompatible bit mask: `_ & 1` will never be higher than `1`
  --> $DIR/bit_masks.rs:23:5
   |
LL |     x & 1 > 1;
   |     ^^^^^^^^^

error: incompatible bit mask: `_ | 2` will always be higher than `1`
  --> $DIR/bit_masks.rs:27:5
   |
LL |     x | 2 > 1;
   |     ^^^^^^^^^

error: incompatible bit mask: `_ & 7` can never be equal to `8`
  --> $DIR/bit_masks.rs:34:5
   |
LL |     x & THREE_BITS == 8;
   |     ^^^^^^^^^^^^^^^^^^^

error: incompatible bit mask: `_ | 7` will never be lower than `7`
  --> $DIR/bit_masks.rs:35:5
   |
LL |     x | EVEN_MORE_REDIRECTION < 7;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: &-masking with zero
  --> $DIR/bit_masks.rs:37:5
   |
LL |     0 & x == 0;
   |     ^^^^^^^^^^

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

error: incompatible bit mask: `_ | 2` will always be higher than `1`
  --> $DIR/bit_masks.rs:41:5
   |
LL |     1 < 2 | x;
   |     ^^^^^^^^^

error: incompatible bit mask: `_ | 3` can never be equal to `2`
  --> $DIR/bit_masks.rs:42:5
   |
LL |     2 == 3 | x;
   |     ^^^^^^^^^^

error: incompatible bit mask: `_ & 2` can never be equal to `1`
  --> $DIR/bit_masks.rs:43:5
   |
LL |     1 == x & 2;
   |     ^^^^^^^^^^

error: ineffective bit mask: `x | 1` compared to `3`, is the same as x compared directly
  --> $DIR/bit_masks.rs:54:5
   |
LL |     x | 1 > 3;
   |     ^^^^^^^^^
   |
   = note: `-D clippy::ineffective-bit-mask` implied by `-D warnings`

error: ineffective bit mask: `x | 1` compared to `4`, is the same as x compared directly
  --> $DIR/bit_masks.rs:55:5
   |
LL |     x | 1 < 4;
   |     ^^^^^^^^^

error: ineffective bit mask: `x | 1` compared to `3`, is the same as x compared directly
  --> $DIR/bit_masks.rs:56:5
   |
LL |     x | 1 <= 3;
   |     ^^^^^^^^^^

error: ineffective bit mask: `x | 1` compared to `8`, is the same as x compared directly
  --> $DIR/bit_masks.rs:57:5
   |
LL |     x | 1 >= 8;
   |     ^^^^^^^^^^

error: aborting due to 17 previous errors