]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0597.nll.stderr
Rollup merge of #52695 - oli-obk:const_err_panic, r=petrochenkov
[rust.git] / src / test / ui / error-codes / E0597.nll.stderr
1 error[E0597]: `y` does not live long enough
2   --> $DIR/E0597.rs:18:16
3    |
4 LL |     x.x = Some(&y);
5    |                ^^ borrowed value does not live long enough
6 LL |     //~^ `y` does not live long enough [E0597]
7 LL | }
8    | -
9    | |
10    | `y` dropped here while still borrowed
11    | borrow later used here, when `x` is dropped
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.