2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-13 22:50:29 +00:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-08-13 21:58:09 +00:00
|
|
|
#[no_core];
|
|
|
|
|
2012-09-12 00:46:20 +00:00
|
|
|
extern mod core;
|
2012-08-13 21:58:09 +00:00
|
|
|
|
2013-01-08 06:13:34 +00:00
|
|
|
use core::{str, int, vec};
|
2012-08-13 21:58:09 +00:00
|
|
|
|
2012-07-31 17:27:51 +00:00
|
|
|
trait to_str {
|
2012-07-14 05:57:48 +00:00
|
|
|
fn to_str() -> ~str;
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:47:00 +00:00
|
|
|
impl to_str for int {
|
2012-07-14 05:57:48 +00:00
|
|
|
fn to_str() -> ~str { int::str(self) }
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:47:00 +00:00
|
|
|
impl<T: to_str> to_str for ~[T] {
|
2012-07-14 05:57:48 +00:00
|
|
|
fn to_str() -> ~str {
|
|
|
|
~"[" + str::connect(vec::map(self, |e| e.to_str() ), ~", ") + ~"]"
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-07-14 05:57:48 +00:00
|
|
|
assert 1.to_str() == ~"1";
|
|
|
|
assert (~[2, 3, 4]).to_str() == ~"[2, 3, 4]";
|
2012-01-03 15:37:41 +00:00
|
|
|
|
2012-07-14 05:57:48 +00:00
|
|
|
fn indirect<T: to_str>(x: T) -> ~str {
|
|
|
|
x.to_str() + ~"!"
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|
2012-07-14 05:57:48 +00:00
|
|
|
assert indirect(~[10, 20]) == ~"[10, 20]!";
|
2012-01-03 15:37:41 +00:00
|
|
|
|
2012-07-14 05:57:48 +00:00
|
|
|
fn indirect2<T: to_str>(x: T) -> ~str {
|
2012-09-19 05:45:24 +00:00
|
|
|
indirect(move x)
|
2012-01-03 15:37:41 +00:00
|
|
|
}
|
2012-07-14 05:57:48 +00:00
|
|
|
assert indirect2(~[1]) == ~"[1]!";
|
2012-01-03 15:07:26 +00:00
|
|
|
}
|