2018-07-15 14:11:54 -07:00
|
|
|
error[E0046]: not all trait items implemented, missing: `partial_cmp`
|
|
|
|
--> $DIR/issue-3344.rs:13:1
|
|
|
|
|
|
2018-12-16 22:21:47 -05:00
|
|
|
LL | impl PartialOrd for Thing { //~ ERROR not all trait items implemented, missing: `partial_cmp`
|
2018-07-15 14:11:54 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ missing `partial_cmp` in implementation
|
|
|
|
|
|
|
|
|
= note: `partial_cmp` from trait: `fn(&Self, &Rhs) -> std::option::Option<std::cmp::Ordering>`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0046`.
|