2018-07-24 09:22:41 -05:00
|
|
|
error: borrowed data escapes outside of function
|
2018-07-15 16:11:54 -05:00
|
|
|
--> $DIR/issue-17758.rs:17:9
|
|
|
|
|
|
|
|
|
LL | fn bar(&self) {
|
2018-07-24 09:22:41 -05:00
|
|
|
| ----- `self` is a reference that is only valid in the function body
|
2018-07-15 16:11:54 -05:00
|
|
|
LL | self.foo();
|
2018-07-24 09:22:41 -05:00
|
|
|
| ^^^^^^^^^^ `self` escapes the function body here
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|