]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-6334.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[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 trait A {
15     fn a(&self) -> uint;
16 }
17
18 trait B {
19     fn b(&self) -> uint;
20 }
21
22 trait C {
23     fn combine<T:A+B>(&self, t: &T) -> uint;
24 }
25
26 struct Foo;
27
28 impl A for Foo {
29     fn a(&self) -> uint { 1 }
30 }
31
32 impl B for Foo {
33     fn b(&self) -> uint { 2 }
34 }
35
36 struct Bar;
37
38 impl C for Bar {
39     // Note below: bounds in impl decl are in reverse order.
40     fn combine<T:B+A>(&self, t: &T) -> uint {
41         (t.a() * 100) + t.b()
42     }
43 }
44
45 fn use_c<S:C, T:B+A>(s: &S, t: &T) -> uint {
46     s.combine(t)
47 }
48
49 pub fn main() {
50     let foo = Foo;
51     let bar = Bar;
52     let r = use_c(&bar, &foo);
53     assert_eq!(r, 102);
54 }