]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-derive-eq.mirunsafeck.stderr
Rollup merge of #102412 - joboet:dont_panic, r=m-ou-se
[rust.git] / src / test / ui / union / union-derive-eq.mirunsafeck.stderr
1 error[E0277]: the trait bound `PartialEqNotEq: Eq` is not satisfied
2   --> $DIR/union-derive-eq.rs:16:5
3    |
4 LL | #[derive(Eq)]
5    |          -- in this derive macro expansion
6 LL | union U2 {
7 LL |     a: PartialEqNotEq,
8    |     ^^^^^^^^^^^^^^^^^ the trait `Eq` is not implemented for `PartialEqNotEq`
9    |
10 note: required by a bound in `AssertParamIsEq`
11   --> $SRC_DIR/core/src/cmp.rs:LL:COL
12    |
13 LL | pub struct AssertParamIsEq<T: Eq + ?Sized> {
14    |                               ^^ required by this bound in `AssertParamIsEq`
15    = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
16 help: consider annotating `PartialEqNotEq` with `#[derive(Eq)]`
17    |
18 LL | #[derive(Eq)]
19    |
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0277`.