mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
32 lines
951 B
Plaintext
32 lines
951 B
Plaintext
error[E0597]: `a` does not live long enough
|
|
--> $DIR/borrowing.rs:13:33
|
|
|
|
|
LL | let _b = {
|
|
| -- borrow later stored here
|
|
LL | let a = 3;
|
|
LL | Pin::new(&mut || yield &a).resume(())
|
|
| -- ^ borrowed value does not live long enough
|
|
| |
|
|
| value captured here by generator
|
|
LL |
|
|
LL | };
|
|
| - `a` dropped here while still borrowed
|
|
|
|
error[E0597]: `a` does not live long enough
|
|
--> $DIR/borrowing.rs:20:20
|
|
|
|
|
LL | let _b = {
|
|
| -- borrow later stored here
|
|
LL | let a = 3;
|
|
LL | || {
|
|
| -- value captured here by generator
|
|
LL | yield &a
|
|
| ^ borrowed value does not live long enough
|
|
...
|
|
LL | };
|
|
| - `a` dropped here while still borrowed
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|