2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
|
|
|
#![warn(clippy::mutex_integer)]
|
2022-01-10 14:36:13 +00:00
|
|
|
#![warn(clippy::mutex_atomic)]
|
2022-01-02 13:26:44 +00:00
|
|
|
#![allow(clippy::borrow_as_ptr)]
|
2015-10-06 23:17:57 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
use std::sync::Mutex;
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(true);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicBool` instead of a `Mutex` here; if you just want
|
|
|
|
//~| NOTE: `-D clippy::mutex-atomic` implied by `-D warnings`
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(5usize);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicUsize` instead of a `Mutex` here; if you just wan
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(9isize);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicIsize` instead of a `Mutex` here; if you just wan
|
2015-10-06 23:17:57 +00:00
|
|
|
let mut x = 4u32;
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(&x as *const u32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicPtr` instead of a `Mutex` here; if you just want
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(&mut x as *mut u32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicPtr` instead of a `Mutex` here; if you just want
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(0u32);
|
2023-12-25 06:28:01 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicU32` instead of a `Mutex` here; if you just wan
|
2023-07-28 19:35:48 +00:00
|
|
|
//~| NOTE: `-D clippy::mutex-integer` implied by `-D warnings`
|
2017-02-08 13:58:07 +00:00
|
|
|
Mutex::new(0i32);
|
2023-12-25 06:28:01 +00:00
|
|
|
//~^ ERROR: consider using an `AtomicI32` instead of a `Mutex` here; if you just wan
|
2015-10-06 23:17:57 +00:00
|
|
|
Mutex::new(0f32); // there are no float atomics, so this should not lint
|
2023-12-25 06:28:01 +00:00
|
|
|
Mutex::new(0u8);
|
|
|
|
//~^ ERROR: consider using an `AtomicU8` instead of a `Mutex` here; if you just wan
|
|
|
|
Mutex::new(0i16);
|
|
|
|
//~^ ERROR: consider using an `AtomicI16` instead of a `Mutex` here; if you just wan
|
|
|
|
let _x: Mutex<i8> = Mutex::new(0);
|
|
|
|
//~^ ERROR: consider using an `AtomicI8` instead of a `Mutex` here; if you just wan
|
|
|
|
const X: i64 = 0;
|
|
|
|
Mutex::new(X);
|
|
|
|
//~^ ERROR: consider using an `AtomicI64` instead of a `Mutex` here; if you just wan
|
|
|
|
|
|
|
|
// there are no 128 atomics, so these two should not lint
|
|
|
|
{
|
|
|
|
Mutex::new(0u128);
|
|
|
|
let _x: Mutex<i128> = Mutex::new(0);
|
|
|
|
}
|
2015-10-06 23:17:57 +00:00
|
|
|
}
|