]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-43784-supertrait.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-43784-supertrait.stderr
1 error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
2   --> $DIR/issue-43784-supertrait.rs:18: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`.