]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/operator-overloading.rs
b23133c53daa5f37e0ad656ea292e53d19c69eaf
[rust.git] / src / test / run-pass / operator-overloading.rs
1 // Copyright 2012-2014 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 #![feature(associated_types)]
12
13 use std::cmp;
14 use std::ops;
15
16 #[derive(Copy, Show)]
17 struct Point {
18     x: int,
19     y: int
20 }
21
22 impl ops::Add for Point {
23     type Output = Point;
24
25     fn add(self, other: Point) -> Point {
26         Point {x: self.x + other.x, y: self.y + other.y}
27     }
28 }
29
30 impl ops::Sub for Point {
31     type Output = Point;
32
33     fn sub(self, other: Point) -> Point {
34         Point {x: self.x - other.x, y: self.y - other.y}
35     }
36 }
37
38 impl ops::Neg<Point> for Point {
39     fn neg(self) -> Point {
40         Point {x: -self.x, y: -self.y}
41     }
42 }
43
44 impl ops::Not<Point> for Point {
45     fn not(self) -> Point {
46         Point {x: !self.x, y: !self.y }
47     }
48 }
49
50 impl ops::Index<bool,int> for Point {
51     fn index(&self, x: &bool) -> &int {
52         if *x {
53             &self.x
54         } else {
55             &self.y
56         }
57     }
58 }
59
60 impl cmp::PartialEq for Point {
61     fn eq(&self, other: &Point) -> bool {
62         (*self).x == (*other).x && (*self).y == (*other).y
63     }
64     fn ne(&self, other: &Point) -> bool { !(*self).eq(other) }
65 }
66
67 pub fn main() {
68     let mut p = Point {x: 10, y: 20};
69     p = p + Point {x: 101, y: 102};
70     p = p - Point {x: 100, y: 100};
71     assert_eq!(p + Point {x: 5, y: 5}, Point {x: 16, y: 27});
72     assert_eq!(-p, Point {x: -11, y: -22});
73     assert_eq!(p[true], 11);
74     assert_eq!(p[false], 22);
75
76     let q = !p;
77     assert_eq!(q.x, !(p.x));
78     assert_eq!(q.y, !(p.y));
79
80     // Issue #1733
81     result(p[true]);
82 }
83
84 fn result(i: int) { }