]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-infer-borrow-scope-too-big.nll.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / regions / regions-infer-borrow-scope-too-big.nll.stderr
1 error[E0597]: `*p` does not live long enough
2   --> $DIR/regions-infer-borrow-scope-too-big.rs:22:22
3    |
4 LL |     let xc = x_coord(&*p); //~ ERROR `*p` does not live long enough
5    |                      ^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | - `*p` dropped here while still borrowed
9    |
10 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 21:8...
11   --> $DIR/regions-infer-borrow-scope-too-big.rs:21:8
12    |
13 LL | fn foo<'a>(p: Box<point>) -> &'a isize {
14    |        ^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0597`.