]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Eq-struct.stderr
Auto merge of #86696 - rust-lang:relnotes-1.54.0, r=pietroalbini
[rust.git] / src / test / ui / derives / derives-span-Eq-struct.stderr
1 error[E0277]: the trait bound `Error: Eq` is not satisfied
2   --> $DIR/derives-span-Eq-struct.rs:8:5
3    |
4 LL | #[derive(Eq,PartialEq)]
5    |          -- in this derive macro expansion
6 LL | struct Struct {
7 LL |     x: Error
8    |     ^^^^^^^^ the trait `Eq` is not implemented for `Error`
9    | 
10   ::: $SRC_DIR/core/src/cmp.rs:LL:COL
11    |
12 LL | pub struct AssertParamIsEq<T: Eq + ?Sized> {
13    |                               -- required by this bound in `AssertParamIsEq`
14    |
15    = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.