1error[E0277]: the trait bound `T: Copy` is not satisfied
2  --> $DIR/issue-43784-associated-type.rs:14:5
3   |
4LL |     type Assoc = T;
5   |     ^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
6   |
7note: required by a bound in `Complete::Assoc`
8  --> $DIR/issue-43784-associated-type.rs:5:17
9   |
10LL |     type Assoc: Partial<Self>;
11   |                 ^^^^^^^^^^^^^ required by this bound in `Complete::Assoc`
12help: consider restricting type parameter `T`
13   |
14LL | impl<T: std::marker::Copy> Complete for T {
15   |       +++++++++++++++++++
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0277`.
20