rust-clippy/tests/ui/mut_mutex_lock.stderr

11 lines
364 B
Text
Raw Normal View History

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