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-08-06 12:34:08 -07:00
|
|
|
let actual: T = match 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_bool() {
|
2012-08-01 17:30:05 -07:00
|
|
|
fn compare_bool(&&b1: bool, &&b2: bool) -> bool { return b1 == b2; }
|
2012-06-19 19:34:01 -07:00
|
|
|
test_generic::<bool>(true, compare_bool);
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
2011-07-26 14:49:40 +02:00
|
|
|
fn test_rec() {
|
2011-07-27 14:19:39 +02:00
|
|
|
type t = {a: int, b: int};
|
2011-06-15 11:19:50 -07:00
|
|
|
|
2012-08-01 17:30:05 -07:00
|
|
|
fn compare_rec(t1: t, t2: t) -> bool { return t1 == t2; }
|
2012-06-19 19:34:01 -07:00
|
|
|
test_generic::<t>({a: 1, b: 2}, compare_rec);
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { test_bool(); test_rec(); }
|