]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/trait_inheritance_overloading_xc.rs
7ddf2c43489c157e05027037837f90173c797981
[rust.git] / src / test / auxiliary / trait_inheritance_overloading_xc.rs
1 // Copyright 2012 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 use std::cmp::PartialEq;
12 use std::ops::{Add, Sub, Mul};
13
14 pub trait MyNum : Add<Self,Self> + Sub<Self,Self> + Mul<Self,Self> + PartialEq + Clone {
15 }
16
17 #[derive(Clone, Show)]
18 pub struct MyInt {
19     pub val: int
20 }
21
22 impl Add<MyInt, MyInt> for MyInt {
23     fn add(self, other: MyInt) -> MyInt { mi(self.val + other.val) }
24 }
25
26 impl Sub<MyInt, MyInt> for MyInt {
27     fn sub(self, other: MyInt) -> MyInt { mi(self.val - other.val) }
28 }
29
30 impl Mul<MyInt, MyInt> for MyInt {
31     fn mul(self, other: MyInt) -> MyInt { mi(self.val * other.val) }
32 }
33
34 impl PartialEq for MyInt {
35     fn eq(&self, other: &MyInt) -> bool { self.val == other.val }
36
37     fn ne(&self, other: &MyInt) -> bool { !self.eq(other) }
38 }
39
40 impl MyNum for MyInt {}
41
42 fn mi(v: int) -> MyInt { MyInt { val: v } }