rust/src/test/ui/issues/issue-30438-a.stderr

22 lines
753 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0597]: borrowed value does not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/issue-30438-a.rs:12:17
2018-07-15 16:11:54 -05:00
|
LL | return &Test { s: &self.s};
| ^^^^^^^^^^^^^^^^^^- temporary value only lives until here
| |
| temporary value does not live long enough
|
2018-12-25 09:56:47 -06:00
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
2018-07-15 16:11:54 -05:00
|
LL | / fn index(&self, _: usize) -> &Self::Output {
LL | | return &Test { s: &self.s};
2019-03-09 06:03:44 -06:00
LL | |
2018-07-15 16:11:54 -05:00
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`.