]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-inheritance-diamond.rs
auto merge of #19514 : jbranchaud/rust/add-btree-set-bitor, r=Gankro
[rust.git] / src / test / run-pass / trait-inheritance-diamond.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 // B and C both require A, so D does as well, twice, but that's just fine
12
13 trait A { fn a(&self) -> int; }
14 trait B: A { fn b(&self) -> int; }
15 trait C: A { fn c(&self) -> int; }
16 trait D: B + C { fn d(&self) -> int; }
17
18 struct S { bogus: () }
19
20 impl A for S { fn a(&self) -> int { 10 } }
21 impl B for S { fn b(&self) -> int { 20 } }
22 impl C for S { fn c(&self) -> int { 30 } }
23 impl D for S { fn d(&self) -> int { 40 } }
24
25 fn f<T:D>(x: &T) {
26     assert_eq!(x.a(), 10);
27     assert_eq!(x.b(), 20);
28     assert_eq!(x.c(), 30);
29     assert_eq!(x.d(), 40);
30 }
31
32 pub fn main() {
33     let value = &S { bogus: () };
34     f(value);
35 }