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-05 08:35:37 -06:00
|
|
|
fn test_generic<T: copy>(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_box() {
|
|
|
|
fn compare_box(b1: ~bool, b2: ~bool) -> bool { ret *b1 == *b2; }
|
2012-02-07 08:37:08 -06:00
|
|
|
let eq = compare_box(_, _);
|
2011-09-23 16:58:06 -05:00
|
|
|
test_generic::<bool>(~true, eq);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { test_box(); }
|