|
| 1 | +error: `z` does not live long enough |
| 2 | + --> $DIR/send-is-not-static-std-sync.rs:27:5 |
| 3 | + | |
| 4 | +26 | *lock.lock().unwrap() = &z; //~ ERROR does not live long enough |
| 5 | + | - borrow occurs here |
| 6 | +27 | } |
| 7 | + | ^ `z` dropped here while still borrowed |
| 8 | +28 | } |
| 9 | + | - borrowed value needs to live until here |
| 10 | + |
| 11 | +error[E0505]: cannot move out of `y` because it is borrowed |
| 12 | + --> $DIR/send-is-not-static-std-sync.rs:23:10 |
| 13 | + | |
| 14 | +22 | *lock.lock().unwrap() = &*y; |
| 15 | + | -- borrow of `*y` occurs here |
| 16 | +23 | drop(y); //~ ERROR cannot move out |
| 17 | + | ^ move out of `y` occurs here |
| 18 | + |
| 19 | +error: `z` does not live long enough |
| 20 | + --> $DIR/send-is-not-static-std-sync.rs:39:5 |
| 21 | + | |
| 22 | +38 | *lock.write().unwrap() = &z; //~ ERROR does not live long enough |
| 23 | + | - borrow occurs here |
| 24 | +39 | } |
| 25 | + | ^ `z` dropped here while still borrowed |
| 26 | +40 | } |
| 27 | + | - borrowed value needs to live until here |
| 28 | + |
| 29 | +error[E0505]: cannot move out of `y` because it is borrowed |
| 30 | + --> $DIR/send-is-not-static-std-sync.rs:35:10 |
| 31 | + | |
| 32 | +34 | *lock.write().unwrap() = &*y; |
| 33 | + | -- borrow of `*y` occurs here |
| 34 | +35 | drop(y); //~ ERROR cannot move out |
| 35 | + | ^ move out of `y` occurs here |
| 36 | + |
| 37 | +error: `z` does not live long enough |
| 38 | + --> $DIR/send-is-not-static-std-sync.rs:53:5 |
| 39 | + | |
| 40 | +52 | tx.send(&z).unwrap(); //~ ERROR does not live long enough |
| 41 | + | - borrow occurs here |
| 42 | +53 | } |
| 43 | + | ^ `z` dropped here while still borrowed |
| 44 | +54 | } |
| 45 | + | - borrowed value needs to live until here |
| 46 | + |
| 47 | +error[E0505]: cannot move out of `y` because it is borrowed |
| 48 | + --> $DIR/send-is-not-static-std-sync.rs:49:10 |
| 49 | + | |
| 50 | +48 | tx.send(&*y); |
| 51 | + | -- borrow of `*y` occurs here |
| 52 | +49 | drop(y); //~ ERROR cannot move out |
| 53 | + | ^ move out of `y` occurs here |
| 54 | + |
| 55 | +error: aborting due to 6 previous errors |
| 56 | + |
0 commit comments