2022-05-14 04:25:53 -05:00
|
|
|
error: higher kinded lifetime bounds on nested opaque types are not supported yet
|
|
|
|
--> $DIR/issue-88236-2.rs:15:61
|
|
|
|
|
|
|
|
|
LL | fn make_impl() -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
note: lifetime declared here
|
|
|
|
--> $DIR/issue-88236-2.rs:15:28
|
|
|
|
|
|
|
|
|
LL | fn make_impl() -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: higher kinded lifetime bounds on nested opaque types are not supported yet
|
|
|
|
--> $DIR/issue-88236-2.rs:18:80
|
2022-02-14 10:10:22 -06:00
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
LL | fn make_weird_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
|
2022-05-14 04:25:53 -05:00
|
|
|
| ^^
|
2022-02-14 10:10:22 -06:00
|
|
|
|
|
2022-05-14 04:25:53 -05:00
|
|
|
note: lifetime declared here
|
|
|
|
--> $DIR/issue-88236-2.rs:18:47
|
|
|
|
|
|
|
|
|
LL | fn make_weird_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
|
|
|
|
| ^^
|
2022-02-14 10:10:22 -06:00
|
|
|
|
2022-05-14 04:25:53 -05:00
|
|
|
error: higher kinded lifetime bounds on nested opaque types are not supported yet
|
|
|
|
--> $DIR/issue-88236-2.rs:23:78
|
2022-02-14 10:10:22 -06:00
|
|
|
|
|
2022-04-28 08:25:36 -05:00
|
|
|
LL | fn make_bad_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
|
2022-05-14 04:25:53 -05:00
|
|
|
| ^^
|
2022-02-14 10:10:22 -06:00
|
|
|
|
|
2022-05-14 04:25:53 -05:00
|
|
|
note: lifetime declared here
|
|
|
|
--> $DIR/issue-88236-2.rs:23:45
|
|
|
|
|
|
|
|
|
LL | fn make_bad_impl<'b>(x: &'b ()) -> impl for<'a> Hrtb<'a, Assoc = impl Send + 'a> {
|
|
|
|
| ^^
|
2022-02-14 10:10:22 -06:00
|
|
|
|
2022-05-14 04:25:53 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2022-02-14 10:10:22 -06:00
|
|
|
|