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
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
2013-04-02 06:02:46 -05:00
|
|
|
enum ES<T> {
|
|
|
|
ES1 { x: T },
|
|
|
|
ES2 { x: T, y: T }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-11-06 02:05:53 -06:00
|
|
|
let (es11, es12, es21, es22) = (ES::ES1 {
|
2015-01-25 15:05:03 -06:00
|
|
|
x: 1
|
2014-11-06 02:05:53 -06:00
|
|
|
}, ES::ES1 {
|
2015-01-25 15:05:03 -06:00
|
|
|
x: 2
|
2014-11-06 02:05:53 -06:00
|
|
|
}, ES::ES2 {
|
2015-01-25 15:05:03 -06:00
|
|
|
x: 1,
|
|
|
|
y: 1
|
2014-11-06 02:05:53 -06:00
|
|
|
}, ES::ES2 {
|
2015-01-25 15:05:03 -06:00
|
|
|
x: 1,
|
|
|
|
y: 2
|
2014-04-21 16:58:52 -05:00
|
|
|
});
|
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 ess = [es11, es12, es21, es22];
|
|
|
|
|
2013-09-02 08:30:00 -05:00
|
|
|
for (i, es1) in ess.iter().enumerate() {
|
|
|
|
for (j, es2) in ess.iter().enumerate() {
|
2013-04-02 06:02:46 -05:00
|
|
|
let ord = i.cmp(&j);
|
|
|
|
|
|
|
|
let eq = i == j;
|
2013-09-02 08:30:00 -05:00
|
|
|
let (lt, le) = (i < j, i <= j);
|
|
|
|
let (gt, ge) = (i > j, 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!(*es1 == *es2, eq);
|
|
|
|
assert_eq!(*es1 != *es2, !eq);
|
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
// PartialOrd
|
2013-04-02 06:02:46 -05:00
|
|
|
assert_eq!(*es1 < *es2, lt);
|
|
|
|
assert_eq!(*es1 > *es2, gt);
|
|
|
|
|
|
|
|
assert_eq!(*es1 <= *es2, le);
|
|
|
|
assert_eq!(*es1 >= *es2, ge);
|
|
|
|
|
2014-05-31 12:43:52 -05:00
|
|
|
// Ord
|
2013-04-02 06:02:46 -05:00
|
|
|
assert_eq!(es1.cmp(es2), ord);
|
|
|
|
}
|
|
|
|
}
|
2013-09-02 08:30:00 -05:00
|
|
|
}
|