]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-PartialEq-struct.stderr
Allow combining -Cprofile-generate and -Cpanic=unwind when targeting
[rust.git] / src / test / ui / derives / derives-span-PartialEq-struct.stderr
1 error[E0369]: binary operation `==` cannot be applied to type `Error`
2   --> $DIR/derives-span-PartialEq-struct.rs:8:5
3    |
4 LL |     x: Error
5    |     ^^^^^^^^
6    |
7    = note: an implementation of `std::cmp::PartialEq` might be missing for `Error`
8    = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
9
10 error[E0369]: binary operation `!=` cannot be applied to type `Error`
11   --> $DIR/derives-span-PartialEq-struct.rs:8:5
12    |
13 LL |     x: Error
14    |     ^^^^^^^^
15    |
16    = note: an implementation of `std::cmp::PartialEq` might be missing for `Error`
17    = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info)
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0369`.