]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/associated-types-projection-in-supertrait.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / run-pass / associated-types-projection-in-supertrait.rs
1 // Copyright 2015 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 // Test that we are handle to correctly handle a projection type
12 // that appears in a supertrait bound. Issue #20559.
13
14 trait A
15 {
16     type TA;
17
18     fn dummy(&self) { }
19 }
20
21 trait B<TB>
22 {
23     fn foo (&self, t : TB) -> String;
24 }
25
26 trait C<TC : A> : B<<TC as A>::TA> { }
27
28 struct X;
29
30 impl A for X
31 {
32     type TA = i32;
33 }
34
35 struct Y;
36
37 impl C<X> for Y { }
38
39 // Both of these impls are required for successful compilation
40 impl B<i32> for Y
41 {
42     fn foo (&self, t : i32) -> String
43     {
44         format!("First {}", t)
45     }
46 }
47
48 fn main ()
49 {
50     let y = Y;
51     assert_eq!(y.foo(5), format!("First 5"));
52 }