]> git.proxmox.com Git - rustc.git/blob - src/test/ui/derives/derives-span-PartialEq-enum.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / derives / derives-span-PartialEq-enum.stderr
1 error[E0369]: binary operation `==` cannot be applied to type `Error`
2 --> $DIR/derives-span-PartialEq-enum.rs:9:6
3 |
4 LL | Error
5 | ^^^^^
6 |
7 = note: an implementation of `std::cmp::PartialEq` might be missing for `Error`
8 = note: this error originates in a derive macro (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-enum.rs:9:6
12 |
13 LL | Error
14 | ^^^^^
15 |
16 = note: an implementation of `std::cmp::PartialEq` might be missing for `Error`
17 = note: this error originates in a derive macro (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`.