rust/tests/ui/if_let_mutex.stderr

30 lines
922 B
Plaintext
Raw Normal View History

2020-03-18 09:51:43 +08:00
error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
--> $DIR/if_let_mutex.rs:10:5
2020-03-18 09:51:43 +08:00
|
LL | / if let Err(locked) = m.lock() {
LL | | do_stuff(locked);
LL | | } else {
LL | | let lock = m.lock().unwrap();
LL | | do_stuff(lock);
LL | | };
| |_____^
|
= note: `-D clippy::if-let-mutex` implied by `-D warnings`
= help: move the lock call outside of the `if let ...` expression
error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
2020-04-21 03:47:08 +08:00
--> $DIR/if_let_mutex.rs:22:5
|
LL | / if let Some(locked) = m.lock().unwrap().deref() {
LL | | do_stuff(locked);
LL | | } else {
LL | | let lock = m.lock().unwrap();
LL | | do_stuff(lock);
LL | | };
| |_____^
|
= help: move the lock call outside of the `if let ...` expression
error: aborting due to 2 previous errors
2020-03-18 09:51:43 +08:00