summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/trailing_zeros.fixed
blob: f7de976f1e00ecb5a74a97a4aac6bb20f1217ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused_parens)]
#![warn(clippy::verbose_bit_mask)]

fn main() {
    let x: i32 = 42;
    let _ = x.trailing_zeros() >= 4;
    //~^ ERROR: bit mask could be simplified with a call to `trailing_zeros`
    //~| NOTE: `-D clippy::verbose-bit-mask` implied by `-D warnings`
    let _ = x.trailing_zeros() >= 5;
    //~^ ERROR: bit mask could be simplified with a call to `trailing_zeros`
    let _ = x & 0b1_1010 == 0; // do not lint
    let _ = x & 1 == 0; // do not lint
}