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