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