]> git.proxmox.com Git - rustc.git/blob - src/test/ui/regions/issue-78262.base.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / regions / issue-78262.base.stderr
1 error[E0521]: borrowed data escapes outside of closure
2 --> $DIR/issue-78262.rs:12:26
3 |
4 LL | let f = |x: &dyn TT| x.func();
5 | - - ^^^^^^^^
6 | | | |
7 | | | `x` escapes the closure body here
8 | | | argument requires that `'1` must outlive `'static`
9 | | let's call the lifetime of this reference `'1`
10 | `x` is a reference that is only valid in the closure body
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0521`.