summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/issue-113087.stderr
blob: c51d13f4ad0f21f8f8d1310cff3e103db54beffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0597`.