mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
319 B
Rust
10 lines
319 B
Rust
#![feature(plugin, custom_attribute, stmt_expr_attributes)]
|
|
#![plugin(clippy)]
|
|
#![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
|
|
}
|