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-b.rs:13:10
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | &Test { s: &self.s}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | }
|
|
|
|
| - temporary value only lives until here
|
|
|
|
|
|
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 12:5...
|
|
|
|
--> $DIR/issue-30438-b.rs:12:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | / fn index(&self, _: usize) -> &Self::Output {
|
|
|
|
LL | | &Test { s: &self.s}
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|