]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-30438-b.nll.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-30438-b.nll.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-30438-b.rs:23:10
3    |
4 LL |         &Test { s: &self.s}
5    |          ^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
6 LL |         //~^ ERROR: borrowed value does not live long enough
7 LL |     }
8    |     - temporary value is freed at the end of this statement
9    |
10 note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 22:5...
11   --> $DIR/issue-30438-b.rs:22:5
12    |
13 LL | /     fn index(&self, _: usize) -> &Self::Output {
14 LL | |         &Test { s: &self.s}
15 LL | |         //~^ ERROR: borrowed value does not live long enough
16 LL | |     }
17    | |_____^
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0716`.