2017-02-07 20:05:30 +00:00
|
|
|
error: &-masking with zero
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:14:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x & 0 == 0;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::bad-bit-mask` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::bad_bit_mask)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-10-15 07:32:47 +00:00
|
|
|
error: this operation will always return zero. This is likely not the intended outcome
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:14:5
|
2017-09-30 17:14:00 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x & 0 == 0;
|
2017-09-30 17:14:00 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
2019-07-18 22:35:32 +00:00
|
|
|
= note: `#[deny(clippy::erasing_op)]` on by default
|
2017-09-30 17:14:00 +00:00
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: incompatible bit mask: `_ & 2` can never be equal to `1`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:21:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x & 2 == 1;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ | 3` can never be equal to `2`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:26:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 3 == 2;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ & 1` will never be higher than `1`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x & 1 > 1;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ | 2` will always be higher than `1`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 2 > 1;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ & 7` can never be equal to `8`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:42:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x & THREE_BITS == 8;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ | 7` will never be lower than `7`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:44:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | EVEN_MORE_REDIRECTION < 7;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: &-masking with zero
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:47:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 0 & x == 0;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2017-10-15 07:32:47 +00:00
|
|
|
error: this operation will always return zero. This is likely not the intended outcome
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:47:5
|
2017-09-30 17:14:00 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 0 & x == 0;
|
2017-09-30 17:14:00 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: incompatible bit mask: `_ | 2` will always be higher than `1`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:53:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1 < 2 | x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ | 3` can never be equal to `2`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:55:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 2 == 3 | x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: incompatible bit mask: `_ & 2` can never be equal to `1`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:57:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1 == x & 2;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: ineffective bit mask: `x | 1` compared to `3`, is the same as x compared directly
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:69:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 1 > 3;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::ineffective-bit-mask` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::ineffective_bit_mask)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: ineffective bit mask: `x | 1` compared to `4`, is the same as x compared directly
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:72:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 1 < 4;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: ineffective bit mask: `x | 1` compared to `3`, is the same as x compared directly
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:74:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 1 <= 3;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: ineffective bit mask: `x | 1` compared to `8`, is the same as x compared directly
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bit_masks.rs:76:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x | 1 >= 8;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 17 previous errors
|
|
|
|
|