]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/deriving-cmp-generic-struct.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / deriving-cmp-generic-struct.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // no-pretty-expanded FIXME #15189
12
13 #[derive(PartialEq, Eq, PartialOrd, Ord)]
14 struct S<T> {
15     x: T,
16     y: T
17 }
18
19 pub fn main() {
20     let s1 = S {x: 1i, y: 1i};
21     let s2 = S {x: 1i, y: 2i};
22
23     // in order for both PartialOrd and Ord
24     let ss = [s1, s2];
25
26     for (i, s1) in ss.iter().enumerate() {
27         for (j, s2) in ss.iter().enumerate() {
28             let ord = i.cmp(&j);
29
30             let eq = i == j;
31             let lt = i < j;
32             let le = i <= j;
33             let gt = i > j;
34             let ge = i >= j;
35
36             // PartialEq
37             assert_eq!(*s1 == *s2, eq);
38             assert_eq!(*s1 != *s2, !eq);
39
40             // PartialOrd
41             assert_eq!(*s1 < *s2, lt);
42             assert_eq!(*s1 > *s2, gt);
43
44             assert_eq!(*s1 <= *s2, le);
45             assert_eq!(*s1 >= *s2, ge);
46
47             // Ord
48             assert_eq!(s1.cmp(s2), ord);
49         }
50     }
51 }