parent
d8d7e73f1c
commit
83cf1cad62
|
@ -99,7 +99,7 @@ fn main() {
|
||||||
let guard = lock.lock().unwrap();
|
let guard = lock.lock().unwrap();
|
||||||
|
|
||||||
spawn(move || {
|
spawn(move || {
|
||||||
receiver.recv().unwrap();;
|
receiver.recv().unwrap();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Try to send the guard over the channel
|
// Try to send the guard over the channel
|
||||||
|
@ -118,7 +118,7 @@ error[E0277]: `MutexGuard<'_, i32>` cannot be sent between threads safely
|
||||||
| _-----_^
|
| _-----_^
|
||||||
| | |
|
| | |
|
||||||
| | required by a bound introduced by this call
|
| | required by a bound introduced by this call
|
||||||
11 | | receiver.recv().unwrap();;
|
11 | | receiver.recv().unwrap();
|
||||||
12 | | });
|
12 | | });
|
||||||
| |_^ `MutexGuard<'_, i32>` cannot be sent between threads safely
|
| |_^ `MutexGuard<'_, i32>` cannot be sent between threads safely
|
||||||
|
|
|
|
||||||
|
|
Loading…
Reference in New Issue