]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-local-borrow-with-panic-outlives-fn.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-local-borrow-with-panic-outlives-fn.stderr
1 error[E0597]: `z.1` does not live long enough
2   --> $DIR/borrowck-local-borrow-with-panic-outlives-fn.rs:3:15
3    |
4 LL |     *x = Some(&mut z.1);
5    |     ----------^^^^^^^^-
6    |     |         |
7    |     |         borrowed value does not live long enough
8    |     assignment requires that `z.1` is borrowed for `'static`
9 ...
10 LL | }
11    | - `z.1` dropped here while still borrowed
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0597`.