2017-07-03 14:07:04 +00:00
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/trailing_zeros.rs:6:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | let _ = (x & 0b1111 == 0);
|
2019-09-27 16:10:18 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::verbose_bit_mask)]`
|
2017-07-03 14:07:04 +00:00
|
|
|
|
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/trailing_zeros.rs:9:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | let _ = x & 0b1_1111 == 0;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
|
2017-07-03 14:07:04 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|