rust-clippy/tests/ui/mutex_atomic.rs

16 lines
378 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::all)]
#![warn(clippy::mutex_integer)]
fn main() {
use std::sync::Mutex;
2017-02-08 13:58:07 +00:00
Mutex::new(true);
Mutex::new(5usize);
Mutex::new(9isize);
let mut x = 4u32;
2017-02-08 13:58:07 +00:00
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
}