2020-10-28 22:36:07 +00:00
|
|
|
error: calling `&mut Mutex::lock` unnecessarily locks an exclusive (mutable) reference
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/mut_mutex_lock.rs:10:33
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
|
|
|
LL | let mut value = value_mutex.lock().unwrap();
|
|
|
|
| ^^^^ help: change this to: `get_mut`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::mut-mutex-lock` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::mut_mutex_lock)]`
|
2020-10-28 22:36:07 +00:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-10-28 22:36:07 +00:00
|
|
|
|