mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 12:23:22 +00:00
parent
94d40be746
commit
b02a77d6b4
33
src/test/run-pass/iface-generic.rs
Normal file
33
src/test/run-pass/iface-generic.rs
Normal file
@ -0,0 +1,33 @@
|
||||
iface to_str {
|
||||
fn to_str() -> str;
|
||||
}
|
||||
impl of to_str for int {
|
||||
fn to_str() -> str { int::str(self) }
|
||||
}
|
||||
impl of to_str for str {
|
||||
fn to_str() -> str { self }
|
||||
}
|
||||
|
||||
iface map<T> {
|
||||
fn map<U>(f: block(T) -> U) -> [U];
|
||||
}
|
||||
impl <T> of map<T> for [T] {
|
||||
fn map<U>(f: block(T) -> U) -> [U] {
|
||||
let r = [];
|
||||
for x in self { 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] {
|
||||
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"];
|
||||
}
|
Loading…
Reference in New Issue
Block a user