2018-12-12 15:57:47 -06:00
|
|
|
error[E0310]: the parameter type `impl Debug` may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/suggest-impl-trait-lifetime.rs:7:5
|
2018-12-12 15:57:47 -06:00
|
|
|
|
|
|
|
|
LL | bar(d);
|
2022-04-01 12:13:25 -05:00
|
|
|
| ^^^^^^ ...so that the type `impl Debug` will meet its required lifetime bounds
|
2021-07-30 10:12:10 -05:00
|
|
|
|
|
2022-03-14 09:56:37 -05:00
|
|
|
help: consider adding an explicit lifetime bound...
|
|
|
|
|
|
|
|
|
LL | fn foo(d: impl Debug + 'static) {
|
|
|
|
| +++++++++
|
2018-12-12 15:57:47 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0310`.
|