]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-no-inner-impl-error-message.stderr
Merge commit 'e214ea82ad0a751563acf67e1cd9279cf302db3a' into clippyup
[rust.git] / src / test / ui / derives / deriving-no-inner-impl-error-message.stderr
1 error[E0369]: binary operation `==` cannot be applied to type `NoCloneOrEq`
2   --> $DIR/deriving-no-inner-impl-error-message.rs:5:5
3    |
4 LL |     x: NoCloneOrEq
5    |     ^^^^^^^^^^^^^^
6    |
7    = note: an implementation of `std::cmp::PartialEq` might be missing for `NoCloneOrEq`
8    = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
9
10 error[E0369]: binary operation `!=` cannot be applied to type `NoCloneOrEq`
11   --> $DIR/deriving-no-inner-impl-error-message.rs:5:5
12    |
13 LL |     x: NoCloneOrEq
14    |     ^^^^^^^^^^^^^^
15    |
16    = note: an implementation of `std::cmp::PartialEq` might be missing for `NoCloneOrEq`
17    = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
18
19 error[E0277]: the trait bound `NoCloneOrEq: std::clone::Clone` is not satisfied
20   --> $DIR/deriving-no-inner-impl-error-message.rs:10:5
21    |
22 LL |     x: NoCloneOrEq
23    |     ^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `NoCloneOrEq`
24    |
25    = note: required by `std::clone::Clone::clone`
26    = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
27
28 error: aborting due to 3 previous errors
29
30 Some errors have detailed explanations: E0277, E0369.
31 For more information about an error, try `rustc --explain E0277`.