]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-no-inner-impl-error-message.stderr
Ignore i586-unknown-linux-gnu and i586-unknown-musl in tests
[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
9 error[E0369]: binary operation `!=` cannot be applied to type `NoCloneOrEq`
10   --> $DIR/deriving-no-inner-impl-error-message.rs:5:5
11    |
12 LL |     x: NoCloneOrEq
13    |     ^^^^^^^^^^^^^^
14    |
15    = note: an implementation of `std::cmp::PartialEq` might be missing for `NoCloneOrEq`
16
17 error[E0277]: the trait bound `NoCloneOrEq: std::clone::Clone` is not satisfied
18   --> $DIR/deriving-no-inner-impl-error-message.rs:10:5
19    |
20 LL |     x: NoCloneOrEq
21    |     ^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `NoCloneOrEq`
22    |
23    = note: required by `std::clone::Clone::clone`
24
25 error: aborting due to 3 previous errors
26
27 Some errors have detailed explanations: E0277, E0369.
28 For more information about an error, try `rustc --explain E0277`.