mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
314 B
Rust
11 lines
314 B
Rust
#![feature(stmt_expr_attributes)]
|
|
|
|
#![allow(unused_parens)]
|
|
|
|
fn main() {
|
|
let x: i32 = 42;
|
|
let _ = #[clippy::author] (x & 0b1111 == 0); // suggest trailing_zeros
|
|
let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
|
|
let _ = x & 0b1_1010 == 0; // do not lint
|
|
let _ = x & 1 == 0; // do not lint
|
|
}
|