]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-43784-associated-type.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-43784-associated-type.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2 --> $DIR/issue-43784-associated-type.rs:14:5
3 |
4 LL | type Assoc: Partial<Self>;
5 | ------------- required by this bound in `Complete::Assoc`
6 ...
7 LL | type Assoc = T;
8 | ^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
9 |
10 help: consider restricting type parameter `T`
11 |
12 LL | impl<T: Copy> Complete for T {
13 | ^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.