2017-07-03 16:07:04 +02:00
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
|
|
|
|
--> trailing_zeros.rs:7:31
|
|
|
|
|
|
|
|
|
|
|
7 | let _ = #[clippy(author)] (x & 0b1111 == 0); // suggest trailing_zeros
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try `x.trailing_zeros() > 4`
|
|
|
|
|
|
|
|
|
|
|
= note: `-D verbose-bit-mask` implied by `-D warnings`
|
|
|
|
|
|
|
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
|
|
|
|
--> trailing_zeros.rs:8:13
|
|
|
|
|
|
|
|
|
|
|
8 | let _ = x & 0b11111 == 0; // suggest trailing_zeros
|
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try `x.trailing_zeros() > 5`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|