error[E0277]: the trait bound `for<'b> as X<'b, Box>>::U: Clone` is not satisfied --> $DIR/hr-associated-type-bound-param-5.rs:27:14 | LL | trait X<'a, T: Cycle + for<'b> X<'b, T>> | - required by a bound in this ... LL | for<'b> >::U: Clone, | ----- required by this bound in `X` ... LL | type U = str; | ^^^ the trait `for<'b> Clone` is not implemented for ` as X<'b, Box>>::U` | = help: the following implementations were found: <&T as Clone> <&mut T as Clone> error[E0277]: the trait bound `for<'b> as X<'b, Vec>>::U: Clone` is not satisfied --> $DIR/hr-associated-type-bound-param-5.rs:27:14 | LL | trait X<'a, T: Cycle + for<'b> X<'b, T>> | - required by a bound in this LL | where LL | for<'b> >::U: Clone, | ----- required by this bound in `X` ... LL | type U = str; | ^^^ the trait `for<'b> Clone` is not implemented for ` as X<'b, Vec>>::U` | = help: the following implementations were found: <&T as Clone> <&mut T as Clone> error[E0277]: the trait bound `for<'b> as X<'b, Vec>>::U: Clone` is not satisfied --> $DIR/hr-associated-type-bound-param-5.rs:33:14 | LL | trait X<'a, T: Cycle + for<'b> X<'b, T>> | - required by a bound in this ... LL | for<'b> >::U: Clone, | ----- required by this bound in `X` ... LL | type U = str; | ^^^ the trait `for<'b> Clone` is not implemented for ` as X<'b, Vec>>::U` | = help: the following implementations were found: <&T as Clone> <&mut T as Clone> error[E0277]: the trait bound `for<'b> as X<'b, Box>>::U: Clone` is not satisfied --> $DIR/hr-associated-type-bound-param-5.rs:33:14 | LL | trait X<'a, T: Cycle + for<'b> X<'b, T>> | - required by a bound in this LL | where LL | for<'b> >::U: Clone, | ----- required by this bound in `X` ... LL | type U = str; | ^^^ the trait `for<'b> Clone` is not implemented for ` as X<'b, Box>>::U` | = help: the following implementations were found: <&T as Clone> <&mut T as Clone> error: aborting due to 4 previous errors For more information about this error, try `rustc --explain E0277`.