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