]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/associated-types-multiple-types-one-trait.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / compile-fail / associated-types-multiple-types-one-trait.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 trait Foo : ::std::marker::MarkerTrait {
12     type X;
13     type Y;
14 }
15
16 fn have_x_want_x<T:Foo<X=u32>>(t: &T)
17 {
18     want_x(t);
19 }
20
21 fn have_x_want_y<T:Foo<X=u32>>(t: &T)
22 {
23     want_y(t); //~ ERROR type mismatch
24 }
25
26 fn have_y_want_x<T:Foo<Y=i32>>(t: &T)
27 {
28     want_x(t); //~ ERROR type mismatch
29 }
30
31 fn have_y_want_y<T:Foo<Y=i32>>(t: &T)
32 {
33     want_y(t);
34 }
35
36 fn have_xy_want_x<T:Foo<X=u32,Y=i32>>(t: &T)
37 {
38     want_x(t);
39 }
40
41 fn have_xy_want_y<T:Foo<X=u32,Y=i32>>(t: &T)
42 {
43     want_y(t);
44 }
45
46 fn have_xy_want_xy<T:Foo<X=u32,Y=i32>>(t: &T)
47 {
48     want_x(t);
49     want_y(t);
50 }
51
52 fn want_x<T:Foo<X=u32>>(t: &T) { }
53
54 fn want_y<T:Foo<Y=i32>>(t: &T) { }
55
56 fn main() { }