]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/derive-clone-for-eq.stderr
Rollup merge of #93966 - rkuhn:patch-1, r=tmandry
[rust.git] / src / test / 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 because of the requirements on the impl of `PartialEq` for `Struct<T>`
8   --> $DIR/derive-clone-for-eq.rs:9:19
9    |
10 LL | impl<T: Clone, U> PartialEq<U> for Struct<T>
11    |                   ^^^^^^^^^^^^     ^^^^^^^^^
12 note: required by a bound in `Eq`
13   --> $SRC_DIR/core/src/cmp.rs:LL:COL
14    |
15 LL | pub trait Eq: PartialEq<Self> {
16    |               ^^^^^^^^^^^^^^^ required by this bound in `Eq`
17    = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
18 help: consider restricting type parameter `T`
19    |
20 LL | pub struct Struct<T: std::clone::Clone>(T);
21    |                    +++++++++++++++++++
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0277`.