2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::all)]
|
|
|
|
#![warn(clippy::mutex_integer)]
|
2022-01-10 23:36:13 +09:00
|
|
|
#![warn(clippy::mutex_atomic)]
|
2022-01-02 14:26:44 +01:00
|
|
|
#![allow(clippy::borrow_as_ptr)]
|
2015-10-07 01:17:57 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
use std::sync::Mutex;
|
2017-02-08 14:58:07 +01:00
|
|
|
Mutex::new(true);
|
|
|
|
Mutex::new(5usize);
|
|
|
|
Mutex::new(9isize);
|
2015-10-07 01:17:57 +02:00
|
|
|
let mut x = 4u32;
|
2017-02-08 14:58:07 +01:00
|
|
|
Mutex::new(&x as *const u32);
|
|
|
|
Mutex::new(&mut x as *mut u32);
|
|
|
|
Mutex::new(0u32);
|
|
|
|
Mutex::new(0i32);
|
2015-10-07 01:17:57 +02:00
|
|
|
Mutex::new(0f32); // there are no float atomics, so this should not lint
|
|
|
|
}
|