mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
479 B
Plaintext
15 lines
479 B
Plaintext
error: higher kinded lifetime bounds on nested opaque types are not supported yet
|
|
--> $DIR/issue-88236.rs:15:61
|
|
|
|
|
LL | fn make_impl() -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {}
|
|
| ^^
|
|
|
|
|
note: lifetime declared here
|
|
--> $DIR/issue-88236.rs:15:28
|
|
|
|
|
LL | fn make_impl() -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {}
|
|
| ^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|