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.

15 lines
441 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
|
LL | foo(post, x)
| ^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
2022-09-01 10:41:13 -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 previous error
For more information about this error, try `rustc --explain E0309`.