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-09-07 16:52:28 -05:00
|
|
|
fn test_generic<T: Copy>(expected: ~T, eq: compare<T>) {
|
2012-08-23 16:44:58 -05:00
|
|
|
let actual: ~T = match true { true => { expected }, _ => fail ~"wat" };
|
2011-09-23 16:58:06 -05:00
|
|
|
assert (eq(expected, actual));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_box() {
|
2012-08-01 19:30:05 -05:00
|
|
|
fn compare_box(b1: ~bool, b2: ~bool) -> bool { return *b1 == *b2; }
|
2012-06-19 21:34:01 -05:00
|
|
|
test_generic::<bool>(~true, compare_box);
|
2011-09-23 16:58:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { test_box(); }
|