mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
16 lines
580 B
Text
16 lines
580 B
Text
error: bit mask could be simplified with a call to `trailing_zeros`
|
|
--> $DIR/trailing_zeros.rs:7:5
|
|
|
|
|
LL | (x & 0b1111 == 0); // suggest trailing_zeros
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
|
|
|
|
|
= note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
|
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
|
--> $DIR/trailing_zeros.rs:8:13
|
|
|
|
|
LL | let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|