]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-escaping-closure-error-2.nll.stderr
Auto merge of #53002 - QuietMisdreavus:brother-may-i-have-some-loops, r=pnkfelix
[rust.git] / src / test / ui / borrowck / borrowck-escaping-closure-error-2.nll.stderr
1 error[E0597]: `books` does not live long enough
2   --> $DIR/borrowck-escaping-closure-error-2.rs:21:17
3    |
4 LL |     Box::new(|| books.push(4))
5    |              -- ^^^^^ borrowed value does not live long enough
6    |              |
7    |              value captured here
8 LL |     //~^ ERROR E0373
9 LL | }
10    | - `books` dropped here while still borrowed
11    |
12 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 19:8...
13   --> $DIR/borrowck-escaping-closure-error-2.rs:19:8
14    |
15 LL | fn foo<'a>(x: &'a i32) -> Box<FnMut()+'a> {
16    |        ^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0597`.