]> git.proxmox.com Git - rustc.git/blame - src/test/ui/impl-header-lifetime-elision/dyn-trait.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / impl-header-lifetime-elision / dyn-trait.nll.stderr
CommitLineData
48663c56
XL
1error[E0521]: borrowed data escapes outside of function
2 --> $DIR/dyn-trait.rs:20:5
3 |
4LL | fn with_dyn_debug_static<'a>(x: Box<dyn Debug + 'a>) {
5 | - `x` is a reference that is only valid in the function body
6LL | static_val(x);
7 | ^^^^^^^^^^^^^ `x` escapes the function body here
60c5eb7d
XL
8 |
9 = help: consider replacing `'a` with `'static`
48663c56
XL
10
11error: aborting due to previous error
12