2017-07-03 16:07:04 +02:00
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2020-09-13 16:23:16 +02:00
|
|
|
--> $DIR/trailing_zeros.rs:6:13
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2019-09-27 18:10:18 +02:00
|
|
|
LL | let _ = (x & 0b1111 == 0); // suggest trailing_zeros
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
|
|
|
= note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
|
2017-07-03 16:07:04 +02:00
|
|
|
|
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2020-09-13 16:23:16 +02:00
|
|
|
--> $DIR/trailing_zeros.rs:7:13
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
|
2017-07-03 16:07:04 +02:00
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|