]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-PartialOrd-enum.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / derives / derives-span-PartialOrd-enum.stderr
1 error[E0277]: can't compare `Error` with `Error`
2   --> $DIR/derives-span-PartialOrd-enum.rs:9:6
3    |
4 LL | #[derive(PartialOrd,PartialEq)]
5    |          ---------- in this derive macro expansion
6 ...
7 LL |      Error
8    |      ^^^^^ no implementation for `Error < Error` and `Error > Error`
9    |
10    = help: the trait `PartialOrd` is not implemented for `Error`
11    = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.