rust/src/test/run-pass/trait-to-str.rs

37 lines
657 B
Rust
Raw Normal View History

2012-08-13 17:50:29 -05:00
// xfail-fast
#[no_core];
extern mod core;
2012-09-05 14:32:05 -05:00
use core::{str, int, vec};
trait to_str {
fn to_str() -> ~str;
}
2012-08-07 20:10:06 -05:00
impl int: to_str {
fn to_str() -> ~str { int::str(self) }
}
2012-08-07 20:10:06 -05:00
impl<T: to_str> ~[T]: to_str {
fn to_str() -> ~str {
~"[" + str::connect(vec::map(self, |e| e.to_str() ), ~", ") + ~"]"
}
}
fn main() {
assert 1.to_str() == ~"1";
assert (~[2, 3, 4]).to_str() == ~"[2, 3, 4]";
fn indirect<T: to_str>(x: T) -> ~str {
x.to_str() + ~"!"
}
assert indirect(~[10, 20]) == ~"[10, 20]!";
fn indirect2<T: to_str>(x: T) -> ~str {
2012-09-19 00:45:24 -05:00
indirect(move x)
}
assert indirect2(~[1]) == ~"[1]!";
}