1
Fork 0
rust/src/test/run-pass/trait-generic.rs

41 lines
833 B
Rust
Raw Normal View History

// xfail-fast
#[legacy_modes];
trait to_str {
fn to_str() -> ~str;
}
2012-08-07 18:10:06 -07:00
impl int: to_str {
fn to_str() -> ~str { int::str(self) }
}
2012-08-07 18:10:06 -07:00
impl ~str: to_str {
fn to_str() -> ~str { copy self }
}
2012-08-07 18:10:06 -07:00
impl (): to_str {
fn to_str() -> ~str { ~"()" }
}
trait map<T> {
fn map<U: Copy>(f: fn(T) -> U) -> ~[U];
}
2012-08-07 18:10:06 -07:00
impl<T> ~[T]: map<T> {
fn map<U: Copy>(f: fn(T) -> U) -> ~[U] {
let mut r = ~[];
2012-06-30 16:19:07 -07:00
for self.each |x| { r += ~[f(x)]; }
r
}
}
fn foo<U, T: map<U>>(x: T) -> ~[~str] {
x.map(|_e| ~"hi" )
}
fn bar<U: to_str, T: map<U>>(x: T) -> ~[~str] {
2012-06-30 16:19:07 -07:00
x.map(|_e| _e.to_str() )
}
fn main() {
assert foo(~[1]) == ~[~"hi"];
assert bar::<int, ~[int]>(~[4, 5]) == ~[~"4", ~"5"];
assert bar::<~str, ~[~str]>(~[~"x", ~"y"]) == ~[~"x", ~"y"];
assert bar::<(), ~[()]>(~[()]) == ~[~"()"];
}