]> git.lizzy.rs Git - rust.git/blob - tests/ui/trailing_zeros.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / trailing_zeros.stderr
1 error: bit mask could be simplified with a call to `trailing_zeros`
2  --> $DIR/trailing_zeros.rs:7:31
3   |
4 7 |     let _ = #[clippy::author] (x & 0b1111 == 0);  // suggest trailing_zeros
5   |                               ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
6   |
7   = note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
8
9 error: bit mask could be simplified with a call to `trailing_zeros`
10  --> $DIR/trailing_zeros.rs:8:13
11   |
12 8 |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
13   |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
14
15 error: aborting due to 2 previous errors
16