summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/inheritance/overloading-simple.rs
blob: c306aa2cda0a1673e97df86e58b4d952d9985249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// run-pass
#![allow(dead_code)]
use std::cmp::PartialEq;

trait MyNum : PartialEq { }

#[derive(Debug)]
struct MyInt { val: isize }

impl PartialEq for MyInt {
    fn eq(&self, other: &MyInt) -> bool { self.val == other.val }
    fn ne(&self, other: &MyInt) -> bool { !self.eq(other) }
}

impl MyNum for MyInt {}

fn f<T:MyNum>(x: T, y: T) -> bool {
    return x == y;
}

fn mi(v: isize) -> MyInt { MyInt { val: v } }

pub fn main() {
    let (x, y, z) = (mi(3), mi(5), mi(3));
    assert!(x != y);
    assert_eq!(x, z);
}