14 lines
457 B
Plaintext
14 lines
457 B
Plaintext
error[E0621]: explicit lifetime required in the type of `x`
|
|
--> $DIR/impl-trait-captures.rs:11:5
|
|
|
|
|
LL | x
|
|
| ^ lifetime `ReEarlyBound(0, 'a)` required
|
|
help: add explicit lifetime `ReEarlyBound(0, 'a)` to the type of `x`
|
|
|
|
|
LL | fn foo<'a, T>(x: &ReEarlyBound(0, 'a) T) -> impl Foo<'a> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0621`.
|