Closed

Description
Suggestion: if a user writes #[derive(PartialOrd)]
and then implements Ord
manually, we should issue a warning. This is almost certainly wrong and will lead to problems.
The same applies to PartialEq
and Eq
.
See rust-lang/rust#40192 for an example.