]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derives-span-Eq-enum-struct-variant.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / derives / derives-span-Eq-enum-struct-variant.stderr
1 error[E0277]: the trait bound `Error: Eq` is not satisfied
2   --> $DIR/derives-span-Eq-enum-struct-variant.rs:9:6
3    |
4 LL | #[derive(Eq,PartialEq)]
5    |          -- in this derive macro expansion
6 ...
7 LL |      x: Error
8    |      ^^^^^^^^ the trait `Eq` is not implemented for `Error`
9    |
10 note: required by a bound in `AssertParamIsEq`
11   --> $SRC_DIR/core/src/cmp.rs:LL:COL
12    = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
13 help: consider annotating `Error` with `#[derive(Eq)]`
14    |
15 LL | #[derive(Eq)]
16    |
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0277`.