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