]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-43784-associated-type.stderr
New upstream version 1.48.0~beta.8+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:18
3 |
4 LL | type Assoc = T;
5 | ^ the trait `Copy` is not implemented for `T`
6 |
7 help: consider restricting type parameter `T`
8 |
9 LL | impl<T: Copy> Complete for T {
10 | ^^^^^^
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.