2012-08-13 17:50:29 -05:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-08-13 16:58:09 -05:00
|
|
|
#[no_core];
|
|
|
|
|
|
|
|
use core;
|
|
|
|
|
|
|
|
import core::{str, int, vec};
|
|
|
|
|
2012-07-31 12:27:51 -05:00
|
|
|
trait to_str {
|
2012-07-14 00:57:48 -05:00
|
|
|
fn to_str() -> ~str;
|
2012-01-03 09:07:26 -06:00
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl int: to_str {
|
2012-07-14 00:57:48 -05:00
|
|
|
fn to_str() -> ~str { int::str(self) }
|
2012-01-03 09:07:26 -06:00
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl<T: to_str> ~[T]: to_str {
|
2012-07-14 00:57:48 -05:00
|
|
|
fn to_str() -> ~str {
|
|
|
|
~"[" + str::connect(vec::map(self, |e| e.to_str() ), ~", ") + ~"]"
|
2012-01-03 09:07:26 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
assert 1.to_str() == ~"1";
|
|
|
|
assert (~[2, 3, 4]).to_str() == ~"[2, 3, 4]";
|
2012-01-03 09:37:41 -06:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn indirect<T: to_str>(x: T) -> ~str {
|
|
|
|
x.to_str() + ~"!"
|
2012-01-03 09:07:26 -06:00
|
|
|
}
|
2012-07-14 00:57:48 -05:00
|
|
|
assert indirect(~[10, 20]) == ~"[10, 20]!";
|
2012-01-03 09:37:41 -06:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn indirect2<T: to_str>(x: T) -> ~str {
|
2012-01-03 09:37:41 -06:00
|
|
|
indirect(x)
|
|
|
|
}
|
2012-07-14 00:57:48 -05:00
|
|
|
assert indirect2(~[1]) == ~"[1]!";
|
2012-01-03 09:07:26 -06:00
|
|
|
}
|