rebase and update nll test

This commit is contained in:
Esteban Kuber 2021-10-12 13:28:02 +00:00
parent 0ee723edb5
commit ff13ad710f

View File

@ -2,13 +2,19 @@ error[E0521]: borrowed data escapes outside of associated function
--> $DIR/issue-72312.rs:13:24
|
LL | pub async fn start(&self) {
| ----- `self` is a reference that is only valid in the associated function body
| -----
| |
| `self` is a reference that is only valid in the associated function body
| let's call the lifetime of this reference `'1`
...
LL | require_static(async move {
| ________________________^
LL | | &self;
LL | | });
| |_________^ `self` escapes the associated function body here
| | ^
| | |
| |_________`self` escapes the associated function body here
| argument requires that `'1` must outlive `'static`
error: aborting due to previous error