2018-09-25 10:24:20 -05:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2018-09-23 10:30:46 -05:00
|
|
|
--> $DIR/issue-30438-b.rs:23:10
|
|
|
|
|
|
|
|
|
LL | &Test { s: &self.s}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
|
|
|
|
LL | //~^ ERROR: borrowed value does not live long enough
|
|
|
|
LL | }
|
|
|
|
| - temporary value is freed at the end of this statement
|
|
|
|
|
|
|
|
|
note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 22:5...
|
|
|
|
--> $DIR/issue-30438-b.rs:22:5
|
|
|
|
|
|
|
|
|
LL | / fn index(&self, _: usize) -> &Self::Output {
|
|
|
|
LL | | &Test { s: &self.s}
|
|
|
|
LL | | //~^ ERROR: borrowed value does not live long enough
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-09-25 10:24:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0716`.
|