// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // xfail-fast #[no_core]; extern mod core; use core::{str, int, vec}; trait to_str { fn to_str(&self) -> ~str; } impl to_str for int { fn to_str(&self) -> ~str { int::to_str(*self) } } impl to_str for ~[T] { fn to_str(&self) -> ~str { ~"[" + str::connect(vec::map(*self, |e| e.to_str() ), ~", ") + ~"]" } } pub fn main() { fail_unless!(1.to_str() == ~"1"); fail_unless!((~[2, 3, 4]).to_str() == ~"[2, 3, 4]"); fn indirect(x: T) -> ~str { x.to_str() + ~"!" } fail_unless!(indirect(~[10, 20]) == ~"[10, 20]!"); fn indirect2(x: T) -> ~str { indirect(x) } fail_unless!(indirect2(~[1]) == ~"[1]!"); }