]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-43784-associated-type.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-43784-associated-type.stderr
1 error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
2 --> $DIR/issue-43784-associated-type.rs:13:9
3 |
4 LL | impl<T> Complete for T { //~ ERROR the trait bound `T: std::marker::Copy` is not satisfied
5 | ^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
6 |
7 = help: consider adding a `where T: std::marker::Copy` bound
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0277`.