]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/associated-types-binding-in-where-clause.rs
doc: remove incomplete sentence
[rust.git] / src / test / run-pass / associated-types-binding-in-where-clause.rs
1 // Copyright 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 // Test equality constraints on associated types in a where clause.
12
13 #![feature(associated_types)]
14
15 pub trait Foo {
16     type A;
17     fn boo(&self) -> <Self as Foo>::A;
18 }
19
20 #[deriving(PartialEq)]
21 struct Bar;
22
23 impl Foo for int {
24     type A = uint;
25     fn boo(&self) -> uint { 42 }
26 }
27
28 impl Foo for char {
29     type A = Bar;
30     fn boo(&self) -> Bar { Bar }
31 }
32
33 fn foo_bar<I: Foo<A=Bar>>(x: I) -> Bar {
34     x.boo()
35 }
36
37 fn foo_uint<I: Foo<A=uint>>(x: I) -> uint {
38     x.boo()
39 }
40
41 pub fn main() {
42     let a = 42i;
43     foo_uint(a);
44
45     let a = 'a';
46     foo_bar(a);
47 }