]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/coherence-where-clause.rs
99c475b72072ec102f8175371a473f2cdf2e51e3
[rust.git] / src / test / run-pass / coherence-where-clause.rs
1 // Copyright 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 use std::fmt::Show;
12 use std::default::Default;
13
14 trait MyTrait {
15     fn get(&self) -> Self;
16 }
17
18 impl<T> MyTrait for T
19     where T : Default
20 {
21     fn get(&self) -> T {
22         Default::default()
23     }
24 }
25
26 #[derive(Clone,Show,PartialEq)]
27 struct MyType {
28     dummy: uint
29 }
30
31 impl Copy for MyType {}
32
33 impl MyTrait for MyType {
34     fn get(&self) -> MyType { (*self).clone() }
35 }
36
37 fn test_eq<M>(m: M, n: M)
38 where M : MyTrait + Show + PartialEq
39 {
40     assert_eq!(m.get(), n);
41 }
42
43 pub fn main() {
44     test_eq(0u, 0u);
45
46     let value = MyType { dummy: 256 + 22 };
47     test_eq(value, value);
48 }