2013-04-02 06:02:46 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-06-25 21:41:16 -05:00
|
|
|
// no-pretty-expanded FIXME #15189
|
2014-06-25 19:08:08 -05:00
|
|
|
|
2014-05-31 12:43:52 -05:00
|
|
|
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
|
2013-04-02 06:02:46 -05:00
|
|
|
struct S<T> {
|
|
|
|
x: T,
|
|
|
|
y: T
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-04-21 16:58:52 -05:00
|
|
|
let s1 = S {x: 1i, y: 1i};
|
|
|
|
let s2 = S {x: 1i, y: 2i};
|
2013-04-02 06:02:46 -05:00
|
|
|
|
2014-05-31 12:43:52 -05:00
|
|
|
// in order for both PartialOrd and Ord
|
2013-04-02 06:02:46 -05:00
|
|
|
let ss = [s1, s2];
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, s1) in ss.iter().enumerate() {
|
|
|
|
for (j, s2) in ss.iter().enumerate() {
|
2013-04-02 06:02:46 -05:00
|
|
|
let ord = i.cmp(&j);
|
|
|
|
|
|
|
|
let eq = i == j;
|
2013-06-04 23:43:41 -05:00
|
|
|
let lt = i < j;
|
|
|
|
let le = i <= j;
|
|
|
|
let gt = i > j;
|
|
|
|
let ge = i >= j;
|
2013-04-02 06:02:46 -05:00
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
// PartialEq
|
2013-04-02 06:02:46 -05:00
|
|
|
assert_eq!(*s1 == *s2, eq);
|
|
|
|
assert_eq!(*s1 != *s2, !eq);
|
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
// PartialOrd
|
2013-04-02 06:02:46 -05:00
|
|
|
assert_eq!(*s1 < *s2, lt);
|
|
|
|
assert_eq!(*s1 > *s2, gt);
|
|
|
|
|
|
|
|
assert_eq!(*s1 <= *s2, le);
|
|
|
|
assert_eq!(*s1 >= *s2, ge);
|
|
|
|
|
2014-05-31 12:43:52 -05:00
|
|
|
// Ord
|
2013-04-02 06:02:46 -05:00
|
|
|
assert_eq!(s1.cmp(s2), ord);
|
|
|
|
}
|
|
|
|
}
|
2013-06-04 23:43:41 -05:00
|
|
|
}
|