]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-30438-a.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-30438-a.stderr
1 error[E0597]: borrowed value does not live long enough
2   --> $DIR/issue-30438-a.rs:12:17
3    |
4 LL |         return &Test { s: &self.s};
5    |                 ^^^^^^^^^^^^^^^^^^- temporary value only lives until here
6    |                 |
7    |                 temporary value does not live long enough
8    |
9 note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 11:5...
10   --> $DIR/issue-30438-a.rs:11: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    = note: consider using a `let` binding to increase its lifetime
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0597`.