]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-6334.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / issue-6334.rs
1 // Copyright 2013-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 // Tests that everything still compiles and runs fine even when
12 // we reorder the bounds.
13
14
15 trait A {
16     fn a(&self) -> usize;
17 }
18
19 trait B {
20     fn b(&self) -> usize;
21 }
22
23 trait C {
24     fn combine<T:A+B>(&self, t: &T) -> usize;
25 }
26
27 struct Foo;
28
29 impl A for Foo {
30     fn a(&self) -> usize { 1 }
31 }
32
33 impl B for Foo {
34     fn b(&self) -> usize { 2 }
35 }
36
37 struct Bar;
38
39 impl C for Bar {
40     // Note below: bounds in impl decl are in reverse order.
41     fn combine<T:B+A>(&self, t: &T) -> usize {
42         (t.a() * 100) + t.b()
43     }
44 }
45
46 fn use_c<S:C, T:B+A>(s: &S, t: &T) -> usize {
47     s.combine(t)
48 }
49
50 pub fn main() {
51     let foo = Foo;
52     let bar = Bar;
53     let r = use_c(&bar, &foo);
54     assert_eq!(r, 102);
55 }