2022-09-23 08:00:02 +00:00
|
|
|
error[E0309]: the parameter type `T` may not live long enough
|
|
|
|
--> $DIR/unactionable_diagnostic.rs:21:5
|
2022-09-01 15:41:13 +00:00
|
|
|
|
|
|
|
|
LL | foo(post, x)
|
2022-09-23 08:00:02 +00:00
|
|
|
| ^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
|
2022-09-01 15:41:13 +00:00
|
|
|
|
|
2022-09-06 10:16:26 +00:00
|
|
|
help: consider adding an explicit lifetime bound...
|
|
|
|
|
|
2022-09-23 08:00:02 +00:00
|
|
|
LL | pub fn bar<'t, T: 't>(
|
|
|
|
| ++++
|
2022-09-01 15:41:13 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0309`.
|