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