2011-09-23 16:58:06 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2011-10-18 17:07:40 -05:00
|
|
|
type compare<T> = fn@(T, T) -> bool;
|
2011-09-23 16:58:06 -05:00
|
|
|
|
2012-01-02 08:31:58 -06:00
|
|
|
fn test_generic<copy T>(expected: T, eq: compare<T>) {
|
2011-09-23 16:58:06 -05:00
|
|
|
let actual: T = alt true { true { expected } };
|
|
|
|
assert (eq(expected, actual));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_vec() {
|
2011-10-06 05:50:24 -05:00
|
|
|
fn compare_box(&&v1: ~int, &&v2: ~int) -> bool { ret v1 == v2; }
|
2011-09-23 16:58:06 -05:00
|
|
|
let eq = bind compare_box(_, _);
|
|
|
|
test_generic::<~int>(~1, eq);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { test_vec(); }
|