]> git.proxmox.com Git - rustc.git/blame - tests/ui/derives/derives-span-PartialOrd-tuple-struct.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / derives / derives-span-PartialOrd-tuple-struct.stderr
CommitLineData
b7449926 1error[E0277]: can't compare `Error` with `Error`
ba9703b0 2 --> $DIR/derives-span-PartialOrd-tuple-struct.rs:8:5
b7449926 3 |
136023e0
XL
4LL | #[derive(PartialOrd,PartialEq)]
5 | ---------- in this derive macro expansion
6LL | struct Struct(
532ac7d7 7LL | Error
b7449926
XL
8 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
9 |
1b1a35ee 10 = help: the trait `PartialOrd` is not implemented for `Error`
17df50a5 11 = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)
04454e1e
FG
12help: consider annotating `Error` with `#[derive(PartialOrd)]`
13 |
353b0b11
FG
14LL + #[derive(PartialOrd)]
15LL | struct Error;
04454e1e 16 |
b7449926 17
4b012472 18error: aborting due to 1 previous error
b7449926
XL
19
20For more information about this error, try `rustc --explain E0277`.