summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-types/hr-associated-type-bound-object.stderr
blob: a0a6f76a58371f0ab9f4082f86a0e4a201bb6233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0277]: the trait bound `for<'b> <T as X<'b>>::U: Clone` is not satisfied
  --> $DIR/hr-associated-type-bound-object.rs:7:13
   |
LL | fn f<'a, T: X<'a> + ?Sized>(x: &<T as X<'a>>::U) {
   |             ^^^^^ the trait `for<'b> Clone` is not implemented for `<T as X<'b>>::U`
   |
note: required by a bound in `X`
  --> $DIR/hr-associated-type-bound-object.rs:3:33
   |
LL | trait X<'a>
   |       - required by a bound in this trait
LL | where
LL |     for<'b> <Self as X<'b>>::U: Clone,
   |                                 ^^^^^ required by this bound in `X`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.