1error[E0277]: the trait bound `str: Clone` is not satisfied
2  --> $DIR/hr-associated-type-bound-param-1.rs:14:14
3   |
4LL |     type V = str;
5   |              ^^^ the trait `Clone` is not implemented for `str`
6   |
7note: required by a bound in `Y`
8  --> $DIR/hr-associated-type-bound-param-1.rs:4:36
9   |
10LL | trait Y<'a, T: ?Sized>
11   |       - required by a bound in this
12...
13LL |     for<'b> <Self as Y<'b, T>>::V: Clone,
14   |                                    ^^^^^ required by this bound in `Y`
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0277`.
19