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