]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12470.nll.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-12470.nll.stderr
1 error[E0597]: `*b` does not live long enough
2   --> $DIR/issue-12470.rs:38:18
3    |
4 LL |     let bb: &B = &*b;    //~ ERROR does not live long enough
5    |                  ^^^ borrowed value does not live long enough
6 LL |     make_a(bb)
7 LL | }
8    | - `*b` dropped here while still borrowed
9    |
10 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 36:16...
11   --> $DIR/issue-12470.rs:36:16
12    |
13 LL | fn make_make_a<'a>() -> A<'a> {
14    |                ^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0597`.