]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-escaping-closure-error-1.nll.stderr
Rollup merge of #52695 - oli-obk:const_err_panic, r=petrochenkov
[rust.git] / src / test / ui / borrowck / borrowck-escaping-closure-error-1.nll.stderr
1 error[E0597]: `books` does not live long enough
2   --> $DIR/borrowck-escaping-closure-error-1.rs:23:11
3    |
4 LL |     spawn(|| books.push(4));
5    |           ^^^^^^^^^^^^^^^^ borrowed value does not live long enough
6 LL |     //~^ ERROR E0373
7 LL | }
8    | - `books` dropped here while still borrowed
9    |
10    = note: borrowed value must be valid for the static lifetime...
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.