]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-local-borrow-with-panic-outlives-fn.ast.nll.stderr
Fix a few tests with target-specific output
[rust.git] / src / test / ui / borrowck / borrowck-local-borrow-with-panic-outlives-fn.ast.nll.stderr
1 error[E0597]: `z.1` does not live long enough
2   --> $DIR/borrowck-local-borrow-with-panic-outlives-fn.rs:16:15
3    |
4 LL |     *x = Some(&mut z.1);
5    |               ^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | - `z.1` 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`.