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

47 lines
1.1 KiB
Rust
Raw Normal View History

// 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 17:50:29 -05:00
// 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 {
2013-03-13 19:57:30 -05:00
fn to_str(&self) -> ~str { int::to_str(*self) }
}
impl<T:to_str> to_str for ~[T] {
fn to_str(&self) -> ~str {
2013-03-13 19:57:30 -05:00
~"[" + str::connect(vec::map(*self, |e| e.to_str() ), ~", ") + ~"]"
}
}
pub fn main() {
2013-03-28 20:39:09 -05:00
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() + ~"!"
}
2013-03-28 20:39:09 -05:00
assert!(indirect(~[10, 20]) == ~"[10, 20]!");
fn indirect2<T:to_str>(x: T) -> ~str {
2013-02-15 04:44:18 -06:00
indirect(x)
}
2013-03-28 20:39:09 -05:00
assert!(indirect2(~[1]) == ~"[1]!");
}