blob: 6268341029bb25547c64e982ae613d4c4bc51fd7 [file] [edit]
error[E0277]: the trait bound `T: Clone` is not satisfied
--> $DIR/trait-solver-global-cache.rs:14:12
|
LL | #[derive(Clone, Eq)]
| -- in this derive macro expansion
LL | pub struct Struct<T>(T);
| ^^^^^^ the trait `Clone` is not implemented for `T`
|
note: required for `Struct<T>` to implement `PartialEq`
--> $DIR/trait-solver-global-cache.rs:16:19
|
LL | impl<T: Clone, U> PartialEq<U> for Struct<T>
| ----- ^^^^^^^^^^^^ ^^^^^^^^^
| |
| unsatisfied trait bound introduced here
note: required by a bound in `Eq`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
help: consider restricting type parameter `T` with trait `Clone`
|
LL | pub struct Struct<T: std::clone::Clone>(T);
| +++++++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.