blob: 47b3dad3989779188290cf5ede5cf10a443e076b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#![warn(clippy::all)]
#![warn(clippy::mutex_integer)]
#![warn(clippy::mutex_atomic)]
#![allow(clippy::borrow_as_ptr)]
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
}
|