rust/tests/ui/deriving/deriving-self-lifetime-totalord-totaleq.rs

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

17 lines
338 B
Rust
Raw Normal View History

//@ run-pass
use std::cmp::Ordering::{Less,Equal,Greater};
2015-05-02 08:06:00 -05:00
#[derive(PartialEq, Eq, PartialOrd, Ord)]
struct A<'a> {
x: &'a isize
}
2013-10-21 07:45:16 -05:00
pub fn main() {
2013-10-20 17:54:53 -05:00
let (a, b) = (A { x: &1 }, A { x: &2 });
assert_eq!(a.cmp(&a), Equal);
assert_eq!(b.cmp(&b), Equal);
assert_eq!(a.cmp(&b), Less);
assert_eq!(b.cmp(&a), Greater);
}