2012-09-19 13:59:44 -07:00
|
|
|
// xfail-fast
|
2011-06-15 11:19:50 -07:00
|
|
|
// -*- rust -*-
|
2012-09-18 15:52:21 -07:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2011-10-18 15:07:40 -07:00
|
|
|
type compare<T> = fn@(T, T) -> bool;
|
2011-04-05 23:42:33 -04:00
|
|
|
|
2012-09-07 14:52:28 -07:00
|
|
|
fn test_generic<T: Copy>(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_vec() {
|
2012-08-01 17:30:05 -07:00
|
|
|
fn compare_box(&&v1: @int, &&v2: @int) -> bool { return v1 == v2; }
|
2012-06-19 19:34:01 -07:00
|
|
|
test_generic::<@int>(@1, @2, compare_box);
|
2011-04-05 23:42:33 -04:00
|
|
|
}
|
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { test_vec(); }
|