rust/tests/ui/regions/regions-infer-bound-from-trait-self.stderr

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

13 lines
451 B
Plaintext
Raw Normal View History

error[E0309]: the parameter type `Self` may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/regions-infer-bound-from-trait-self.rs:46:9
|
LL | check_bound(x, self)
| ^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding an explicit lifetime bound `Self: 'a`...
2022-04-24 10:04:31 -05:00
= note: ...so that the type `Self` will meet its required lifetime bounds
error: aborting due to previous error
For more information about this error, try `rustc --explain E0309`.