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
|
|
|
|
|
2023-09-17 14:32:02 +00:00
|
|
|
LL | pub fn bar<'t, T>(
|
|
|
|
| -- the parameter type `T` must be valid for the lifetime `'t` as defined here...
|
|
|
|
...
|
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
|
|
|
|
|
2023-10-08 10:06:17 +00:00
|
|
|
help: consider adding an explicit lifetime bound
|
2022-09-06 10:16:26 +00:00
|
|
|
|
|
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`.
|