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
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn test_generic<T>(expected: @T, not_expected: @T, eq: compare<T>) {
|
2011-07-27 14:19:39 +02:00
|
|
|
let actual: @T = if true { expected } else { not_expected };
|
2011-06-15 11:19:50 -07:00
|
|
|
assert (eq(expected, actual));
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_box() {
|
2012-08-01 17:30:05 -07:00
|
|
|
fn compare_box(b1: @bool, b2: @bool) -> bool { return *b1 == *b2; }
|
2012-06-19 19:34:01 -07:00
|
|
|
test_generic::<bool>(@true, @false, compare_box);
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { test_box(); }
|