2018-08-08 14:28:26 +02:00
|
|
|
error[E0369]: binary operation `==` cannot be applied to type `NoCloneOrEq`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/deriving-no-inner-impl-error-message.rs:5:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
LL | #[derive(PartialEq)]
|
|
|
|
| --------- in this derive macro expansion
|
|
|
|
LL | struct E {
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | x: NoCloneOrEq
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-09-28 14:48:54 +00:00
|
|
|
note: an implementation of `PartialEq<_>` might be missing for `NoCloneOrEq`
|
|
|
|
--> $DIR/deriving-no-inner-impl-error-message.rs:1:1
|
|
|
|
|
|
|
|
|
LL | struct NoCloneOrEq;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ must implement `PartialEq<_>`
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2021-09-28 14:48:54 +00:00
|
|
|
help: consider annotating `NoCloneOrEq` with `#[derive(PartialEq)]`
|
|
|
|
|
|
|
|
|
LL | #[derive(PartialEq)]
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: the trait bound `NoCloneOrEq: Clone` is not satisfied
|
2022-06-22 16:11:14 +10:00
|
|
|
--> $DIR/deriving-no-inner-impl-error-message.rs:9:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
LL | #[derive(Clone)]
|
|
|
|
| ----- in this derive macro expansion
|
|
|
|
LL | struct C {
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | x: NoCloneOrEq
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `NoCloneOrEq`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2022-03-31 23:58:45 +09:00
|
|
|
help: consider annotating `NoCloneOrEq` with `#[derive(Clone)]`
|
|
|
|
|
|
|
|
|
LL | #[derive(Clone)]
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2022-06-22 16:11:14 +10:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0277, E0369.
|
2018-08-08 14:28:26 +02:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|