summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/if_let_mutex.stderr
blob: e9c4d9163328f3066e9c67f244a8ce233c35555a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
  --> $DIR/if_let_mutex.rs:10:5
   |
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
  --> $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