2011-04-05 23:42:33 -04:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2011-10-18 15:07:40 -07:00
|
|
|
type compare<T> = fn@(T, T) -> bool;
|
2011-04-05 23:42:33 -04:00
|
|
|
|
2012-01-05 15:35:37 +01:00
|
|
|
fn test_generic<T: copy>(expected: T, eq: compare<T>) {
|
2012-02-15 09:40:42 +01:00
|
|
|
let actual: T = alt check true { true { expected } };
|
2011-06-15 11:19:50 -07:00
|
|
|
assert (eq(expected, actual));
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_vec() {
|
2011-10-06 12:50:24 +02:00
|
|
|
fn compare_box(&&v1: @int, &&v2: @int) -> bool { ret v1 == v2; }
|
2012-06-19 19:34:01 -07:00
|
|
|
test_generic::<@int>(@1, compare_box);
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { test_vec(); }
|