rust/tests/ui/trailing_zeros.stderr

17 lines
624 B
Plaintext
Raw Normal View History

error: bit mask could be simplified with a call to `trailing_zeros`
2017-08-01 10:54:21 -05:00
--> $DIR/trailing_zeros.rs:7:31
|
2018-05-19 07:04:57 -05:00
7 | let _ = #[clippy::author] (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`
2017-08-01 10:54:21 -05:00
--> $DIR/trailing_zeros.rs:8:13
|
8 | let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
| ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
2018-01-16 10:06:27 -06:00
error: aborting due to 2 previous errors