trait Id { type This: ?Sized; } impl Id for T { type This = T; } trait Trait { type Assoc: Id; } // We can't see use the `T::Assoc::This: Copy` bound to prove `T::Assoc: Copy` fn foo(x: T::Assoc) -> (T::Assoc, T::Assoc) { (x, x) //~^ ERROR use of moved value } fn main() {}