rust/tests/ui/mut_mutex_lock.stderr

11 lines
364 B
Text
Raw Normal View History

2020-10-02 04:54:44 +02:00
error: calling `&mut Mutex::lock` unnecessarily locks an exclusive (mutable) reference
2020-10-10 12:07:47 +02:00
--> $DIR/mut_mutex_lock.rs:11:33
2020-10-02 03:05:30 +02:00
|
2020-10-02 04:54:44 +02:00
LL | let mut value = value_mutex.lock().unwrap();
2020-10-10 12:07:47 +02:00
| ^^^^ help: change this to: `get_mut`
2020-10-02 03:05:30 +02:00
|
2020-10-02 04:54:44 +02:00
= note: `-D clippy::mut-mutex-lock` implied by `-D warnings`
2020-10-02 03:05:30 +02:00
2020-10-02 04:54:44 +02:00
error: aborting due to previous error
2020-10-02 03:05:30 +02:00