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