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
11
12
13
14
15
16
17
18
#![feature(plugin)]

#![plugin(clippy)]
#![warn(clippy)]
#![warn(mutex_integer)]

fn main() {
    use std::sync::Mutex;
    Mutex::new(true);
    Mutex::new(5usize);
    Mutex::new(9isize);
    let mut x = 4u32;
    Mutex::new(&x as *const u32);
    Mutex::new(&mut x as *mut u32);
    Mutex::new(0u32);
    Mutex::new(0i32);
    Mutex::new(0f32); // there are no float atomics, so this should not lint
}