mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
18 lines
368 B
Rust
18 lines
368 B
Rust
|
|
|
|
|
|
#![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
|
|
}
|