]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/derive-clone-for-eq.stderr
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / suggestions / derive-clone-for-eq.stderr
1 error[E0277]: the trait bound `T: Clone` is not satisfied
2   --> $DIR/derive-clone-for-eq.rs:6:17
3    |
4 LL | #[derive(Clone, Eq)]
5    |                 ^^ the trait `Clone` is not implemented for `T`
6    |
7 note: required for `Struct<T>` to implement `PartialEq`
8   --> $DIR/derive-clone-for-eq.rs:9:19
9    |
10 LL | impl<T: Clone, U> PartialEq<U> for Struct<T>
11    |         -----     ^^^^^^^^^^^^     ^^^^^^^^^
12    |         |
13    |         unsatisfied trait bound introduced here
14 note: required by a bound in `Eq`
15   --> $SRC_DIR/core/src/cmp.rs:LL:COL
16    = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
17 help: consider restricting type parameter `T`
18    |
19 LL | pub struct Struct<T: std::clone::Clone>(T);
20    |                    +++++++++++++++++++
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0277`.