rust/src/test/run-pass/trait-to-str.rs
Patrick Walton af79a5aa7d test: Make manual changes to deal with the fallout from removal of
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
2014-03-21 23:37:21 +11:00

43 lines
1.1 KiB
Rust

// Copyright 2012-2014 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.
// ignore-fast
use std::vec_ng::Vec;
trait to_str {
fn to_string(&self) -> ~str;
}
impl to_str for int {
fn to_string(&self) -> ~str { self.to_str() }
}
impl<T:to_str> to_str for Vec<T> {
fn to_string(&self) -> ~str {
format!("[{}]", self.iter().map(|e| e.to_string()).to_owned_vec().connect(", "))
}
}
pub fn main() {
assert!(1.to_string() == ~"1");
assert!((vec!(2, 3, 4)).to_string() == ~"[2, 3, 4]");
fn indirect<T:to_str>(x: T) -> ~str {
x.to_string() + "!"
}
assert!(indirect(vec!(10, 20)) == ~"[10, 20]!");
fn indirect2<T:to_str>(x: T) -> ~str {
indirect(x)
}
assert!(indirect2(vec!(1)) == ~"[1]!");
}