]> git.lizzy.rs Git - rust.git/blob - tests/ui/mutex_atomic.rs
rustup and compile-fail -> ui test move
[rust.git] / tests / ui / mutex_atomic.rs
1 #![feature(plugin)]
2
3 #![plugin(clippy)]
4 #![deny(clippy)]
5 #![deny(mutex_integer)]
6
7 fn main() {
8     use std::sync::Mutex;
9     Mutex::new(true); //~ERROR Consider using an AtomicBool instead of a Mutex here.
10     Mutex::new(5usize); //~ERROR Consider using an AtomicUsize instead of a Mutex here.
11     Mutex::new(9isize); //~ERROR Consider using an AtomicIsize instead of a Mutex here.
12     let mut x = 4u32;
13     Mutex::new(&x as *const u32); //~ERROR Consider using an AtomicPtr instead of a Mutex here.
14     Mutex::new(&mut x as *mut u32); //~ERROR Consider using an AtomicPtr instead of a Mutex here.
15     Mutex::new(0u32); //~ERROR Consider using an AtomicUsize instead of a Mutex here.
16     Mutex::new(0i32); //~ERROR Consider using an AtomicIsize instead of a Mutex here.
17     Mutex::new(0f32); // there are no float atomics, so this should not lint
18 }