]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-to-str.rs
auto merge of #13049 : alexcrichton/rust/io-fill, r=huonw
[rust.git] / src / test / run-pass / trait-to-str.rs
1 // Copyright 2012-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 // ignore-fast
12
13
14 trait to_str {
15     fn to_string(&self) -> ~str;
16 }
17
18 impl to_str for int {
19     fn to_string(&self) -> ~str { self.to_str() }
20 }
21
22 impl<T:to_str> to_str for Vec<T> {
23     fn to_string(&self) -> ~str {
24         format!("[{}]", self.iter().map(|e| e.to_string()).collect::<~[~str]>().connect(", "))
25     }
26 }
27
28 pub fn main() {
29     assert!(1.to_string() == ~"1");
30     assert!((vec!(2, 3, 4)).to_string() == ~"[2, 3, 4]");
31
32     fn indirect<T:to_str>(x: T) -> ~str {
33         x.to_string() + "!"
34     }
35     assert!(indirect(vec!(10, 20)) == ~"[10, 20]!");
36
37     fn indirect2<T:to_str>(x: T) -> ~str {
38         indirect(x)
39     }
40     assert!(indirect2(vec!(1)) == ~"[1]!");
41 }