2023-06-28 16:16:39 -05:00
|
|
|
error[E0597]: `a` does not live long enough
|
|
|
|
--> $DIR/issue-113087.rs:7:17
|
|
|
|
|
|
|
|
|
LL | for a in [1] {
|
|
|
|
| - binding `a` declared here
|
|
|
|
LL | some_fn(&a, |c| {
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
LL | some_closure(c);
|
|
|
|
| ------------ borrow later captured here by closure
|
|
|
|
LL | });
|
|
|
|
LL | }
|
|
|
|
| - `a` dropped here while still borrowed
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-28 16:16:39 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|