blob: 657682d962d1508c0d0bca8dda908164271b9e53 [file] [log] [blame]
error[E0597]: `x` does not live long enough
--> $DIR/send-is-not-static-ensures-scoping.rs:26:18
|
26 | let y = &x;
| ^ borrowed value does not live long enough
...
33 | };
| - `x` dropped here while still borrowed
...
36 | }
| - borrowed value needs to live until here
error[E0597]: `y` does not live long enough
--> $DIR/send-is-not-static-ensures-scoping.rs:30:22
|
29 | scoped(|| {
| -- capture occurs here
30 | let _z = y;
| ^ borrowed value does not live long enough
...
33 | };
| - borrowed value only lives until here
...
36 | }
| - borrowed value needs to live until here
error: aborting due to 2 previous errors