]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/static-impl.rs
auto merge of #8564 : alexcrichton/rust/ifmt+++, r=graydon
[rust.git] / src / test / run-pass / static-impl.rs
1 // Copyright 2012 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 // xfail-fast
12
13 use std::uint;
14
15 pub trait plus {
16     fn plus(&self) -> int;
17 }
18
19 mod a {
20     use plus;
21     impl plus for uint { fn plus(&self) -> int { *self as int + 20 } }
22 }
23
24 mod b {
25     use plus;
26     impl plus for ~str { fn plus(&self) -> int { 200 } }
27 }
28
29 trait uint_utils {
30     fn str(&self) -> ~str;
31     fn multi(&self, f: &fn(uint));
32 }
33
34 impl uint_utils for uint {
35     fn str(&self) -> ~str { uint::to_str(*self) }
36     fn multi(&self, f: &fn(uint)) {
37         let mut c = 0u;
38         while c < *self { f(c); c += 1u; }
39     }
40 }
41
42 trait vec_utils<T> {
43     fn length_(&self, ) -> uint;
44     fn iter_(&self, f: &fn(&T));
45     fn map_<U>(&self, f: &fn(&T) -> U) -> ~[U];
46 }
47
48 impl<T> vec_utils<T> for ~[T] {
49     fn length_(&self) -> uint { self.len() }
50     fn iter_(&self, f: &fn(&T)) { for x in self.iter() { f(x); } }
51     fn map_<U>(&self, f: &fn(&T) -> U) -> ~[U] {
52         let mut r = ~[];
53         for elt in self.iter() {
54             r.push(f(elt));
55         }
56         r
57     }
58 }
59
60 pub fn main() {
61     assert_eq!(10u.plus(), 30);
62     assert_eq!((~"hi").plus(), 200);
63
64     assert_eq!((~[1]).length_().str(), ~"1");
65     assert_eq!((~[3, 4]).map_(|a| *a + 4 )[0], 7);
66     assert_eq!((~[3, 4]).map_::<uint>(|a| *a as uint + 4u )[0], 7u);
67     let mut x = 0u;
68     10u.multi(|_n| x += 2u );
69     assert_eq!(x, 20u);
70 }