rust/tests/ui/regions/issue-78262.base.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
602 B
Plaintext
Raw Permalink Normal View History

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