2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied
|
2023-01-12 14:15:00 -06:00
|
|
|
--> $DIR/issue-43784-supertrait.rs:8:22
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | impl<T> Complete for T {}
|
2023-01-12 14:15:00 -06:00
|
|
|
| ^ the trait `Copy` is not implemented for `T`
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2023-01-12 15:32:06 -06:00
|
|
|
note: required for `T` to implement `Partial`
|
|
|
|
--> $DIR/issue-43784-supertrait.rs:1:11
|
|
|
|
|
|
|
|
|
LL | pub trait Partial: Copy {
|
|
|
|
| ^^^^^^^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `Complete`
|
|
|
|
--> $DIR/issue-43784-supertrait.rs:4:21
|
|
|
|
|
|
|
|
|
LL | pub trait Complete: Partial {
|
|
|
|
| ^^^^^^^ required by this bound in `Complete`
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider restricting type parameter `T`
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2021-03-30 04:56:39 -05:00
|
|
|
LL | impl<T: std::marker::Copy> Complete for T {}
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++++++++++++++++++
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
error: aborting due to previous error
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2018-08-22 18:19:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|