rust/tests/ui/issues/issue-3344.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
249 B
Rust
Raw Normal View History

#[derive(PartialEq)]
struct Thing(usize);
impl PartialOrd for Thing { //~ ERROR not all trait items implemented, missing: `partial_cmp`
fn le(&self, other: &Thing) -> bool { true }
fn ge(&self, other: &Thing) -> bool { true }
}
fn main() {}