]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/suggest-impl-trait-lifetime.nll.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / suggestions / suggest-impl-trait-lifetime.nll.stderr
CommitLineData
48663c56
XL
1error[E0310]: the parameter type `impl Debug` may not live long enough
2 --> $DIR/suggest-impl-trait-lifetime.rs:7:5
3 |
4LL | bar(d);
04454e1e 5 | ^^^^^^ ...so that the type `impl Debug` will meet its required lifetime bounds
48663c56 6 |
04454e1e
FG
7help: consider adding an explicit lifetime bound...
8 |
9LL | fn foo(d: impl Debug + 'static) {
10 | +++++++++
48663c56
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0310`.