summary refs log tree commit diff
path: root/src/test/ui/issues/issue-30438-a.stderr
blob: 89f8e623dc471830225c5df226e526428aa36207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0597]: borrowed value does not live long enough
  --> $DIR/issue-30438-a.rs:12:17
   |
LL |         return &Test { s: &self.s};
   |                 ^^^^^^^^^^^^^^^^^^- temporary value only lives until here
   |                 |
   |                 temporary value does not live long enough
   |
note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 11:5...
  --> $DIR/issue-30438-a.rs:11:5
   |
LL | /     fn index(&self, _: usize) -> &Self::Output {
LL | |         return &Test { s: &self.s};
LL | |
LL | |     }
   | |_____^
   = note: consider using a `let` binding to increase its lifetime

error: aborting due to previous error

For more information about this error, try `rustc --explain E0597`.