]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-escaping-closure-error-2.nll.stderr
Hide some lints which are not quite right the way they are reported to the user
[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:14
3    |
4 LL |     Box::new(|| books.push(4))
5    |              ^^^^^^^^^^^^^^^^ borrowed value does not live long enough
6 LL |     //~^ ERROR E0373
7 LL | }
8    | - borrowed value only lives until here
9    |
10 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 19:8...
11   --> $DIR/borrowck-escaping-closure-error-2.rs:19:8
12    |
13 LL | fn foo<'a>(x: &'a i32) -> Box<FnMut()+'a> {
14    |        ^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0597`.