2017-07-03 14:07:04 +00:00
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/trailing_zeros.rs:7:31
|
2017-07-03 14:07:04 +00:00
|
|
|
|
|
|
|
|
7 | let _ = #[clippy(author)] (x & 0b1111 == 0); // suggest trailing_zeros
|
2017-08-13 13:13:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
|
2017-07-03 14:07:04 +00:00
|
|
|
|
|
|
|
|
= note: `-D verbose-bit-mask` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: bit mask could be simplified with a call to `trailing_zeros`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/trailing_zeros.rs:8:13
|
2017-07-03 14:07:04 +00:00
|
|
|
|
|
2017-08-01 11:11:48 +00:00
|
|
|
8 | let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
|
2017-08-13 13:13:13 +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
|
|
|
|
|