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