]> git.proxmox.com Git - rustc.git/blob - src/test/ui/derives/derives-span-PartialOrd-enum.stderr
New upstream version 1.42.0+dfsg1
[rustc.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:13:6
3 |
4 LL | Error
5 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
6 |
7 = help: the trait `std::cmp::PartialOrd` is not implemented for `Error`
8 = note: required by `std::cmp::PartialOrd::partial_cmp`
9
10 error[E0277]: can't compare `Error` with `Error`
11 --> $DIR/derives-span-PartialOrd-enum.rs:13:6
12 |
13 LL | Error
14 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
15 |
16 = help: the trait `std::cmp::PartialOrd` is not implemented for `Error`
17 = note: required by `std::cmp::PartialOrd::partial_cmp`
18
19 error[E0277]: can't compare `Error` with `Error`
20 --> $DIR/derives-span-PartialOrd-enum.rs:13:6
21 |
22 LL | Error
23 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
24 |
25 = help: the trait `std::cmp::PartialOrd` is not implemented for `Error`
26 = note: required by `std::cmp::PartialOrd::partial_cmp`
27
28 error[E0277]: can't compare `Error` with `Error`
29 --> $DIR/derives-span-PartialOrd-enum.rs:13:6
30 |
31 LL | Error
32 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
33 |
34 = help: the trait `std::cmp::PartialOrd` is not implemented for `Error`
35 = note: required by `std::cmp::PartialOrd::partial_cmp`
36
37 error[E0277]: can't compare `Error` with `Error`
38 --> $DIR/derives-span-PartialOrd-enum.rs:13:6
39 |
40 LL | Error
41 | ^^^^^ no implementation for `Error < Error` and `Error > Error`
42 |
43 = help: the trait `std::cmp::PartialOrd` is not implemented for `Error`
44 = note: required by `std::cmp::PartialOrd::partial_cmp`
45
46 error: aborting due to 5 previous errors
47
48 For more information about this error, try `rustc --explain E0277`.