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