2021-08-03 17:42:07 +00:00
|
|
|
error[E0521]: borrowed data escapes outside of closure
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/issue-78262.rs:12:26
|
2021-08-03 17:42:07 +00:00
|
|
|
|
|
|
|
|
LL | let f = |x: &dyn TT| x.func();
|
2021-10-03 20:25:26 +00:00
|
|
|
| - - ^^^^^^^^
|
|
|
|
| | | |
|
|
|
|
| | | `x` escapes the closure body here
|
|
|
|
| | | argument requires that `'1` must outlive `'static`
|
|
|
|
| | let's call the lifetime of this reference `'1`
|
2021-08-03 17:42:07 +00:00
|
|
|
| `x` is a reference that is only valid in the closure body
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-08-03 17:42:07 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0521`.
|