11 lines
321 B
Plaintext
11 lines
321 B
Plaintext
error: borrowed data escapes outside of function
|
|
--> $DIR/issue-17758.rs:17:9
|
|
|
|
|
LL | fn bar(&self) {
|
|
| ----- `self` is a reference that is only valid in the function body
|
|
LL | self.foo();
|
|
| ^^^^^^^^^^ `self` escapes the function body here
|
|
|
|
error: aborting due to previous error
|
|
|