rust/tests/ui/derives/deriving-no-inner-impl-error-message.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.5 KiB
Plaintext
Raw Normal View History

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
|
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
| ^^^^^^^^^^^^^^
|
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<_>`
= note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider annotating `NoCloneOrEq` with `#[derive(PartialEq)]`
|
2023-03-18 02:18:39 +00:00
LL + #[derive(PartialEq)]
LL | struct NoCloneOrEq;
|
2018-08-08 12:28:26 +00:00
error[E0277]: the trait bound `NoCloneOrEq: Clone` is not satisfied
--> $DIR/deriving-no-inner-impl-error-message.rs:9:5
2018-08-08 12:28:26 +00:00
|
LL | #[derive(Clone)]
| ----- in this derive macro expansion
LL | struct C {
2018-08-08 12:28:26 +00:00
LL | x: NoCloneOrEq
| ^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `NoCloneOrEq`
2018-08-08 12:28:26 +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
error: aborting due to 2 previous errors
2018-08-08 12:28:26 +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`.