clippy 0.0.155

A bunch of helpful lints to avoid common pitfalls in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
#![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
}