rust/tests/ui/impl-trait/unactionable_diagnostic.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
565 B
Plaintext
Raw Normal View History

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)
| ^^^^^^^^^^^^ ...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
|
LL | pub fn bar<'t, T: 't>(
| ++++
2022-09-01 10:41:13 -05: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`.