rust/src/test/run-pass/expr-block-generic-unique1.rs

21 lines
418 B
Rust
Raw Normal View History

// -*- rust -*-
type compare<T> = fn@(~T, ~T) -> bool;
fn test_generic<T: Copy>(expected: ~T, eq: compare<T>) {
let actual: ~T = { copy expected };
assert (eq(expected, actual));
}
fn test_box() {
fn compare_box(b1: ~bool, b2: ~bool) -> bool {
log(debug, *b1);
log(debug, *b2);
2012-08-01 19:30:05 -05:00
return *b1 == *b2;
}
2012-06-19 21:34:01 -05:00
test_generic::<bool>(~true, compare_box);
}
fn main() { test_box(); }