]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-inheritance-static2.rs
caedaf35737e3acc408cbeb36ba01be614311be9
[rust.git] / src / test / run-pass / trait-inheritance-static2.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 #![feature(core)]
12
13 pub trait MyEq : ::std::marker::MarkerTrait { }
14
15 pub trait MyNum : ::std::marker::MarkerTrait {
16     fn from_int(int) -> Self;
17 }
18
19 pub trait NumExt: MyEq + MyNum { }
20
21 struct S { v: int }
22
23 impl MyEq for S { }
24
25 impl MyNum for S {
26     fn from_int(i: int) -> S {
27         S {
28             v: i
29         }
30     }
31 }
32
33 impl NumExt for S { }
34
35 fn greater_than_one<T:NumExt>() -> T { MyNum::from_int(1) }
36
37 pub fn main() {
38     let v: S = greater_than_one();
39     assert_eq!(v.v, 1);
40 }