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