rust/tests/ui/binding/expr-match-generic-unique1.rs

19 lines
456 B
Rust
Raw Normal View History

// run-pass
2015-01-02 22:32:54 +00:00
fn test_generic<T: Clone, F>(expected: Box<T>, eq: F) where F: FnOnce(Box<T>, Box<T>) -> bool {
let actual: Box<T> = match true {
2013-03-15 22:27:15 +00:00
true => { expected.clone() },
_ => panic!("wat")
};
2015-01-02 22:32:54 +00:00
assert!(eq(expected, actual));
}
fn test_box() {
fn compare_box(b1: Box<bool>, b2: Box<bool>) -> bool {
return *b1 == *b2;
}
test_generic::<bool, _>(Box::new(true), compare_box);
}
pub fn main() { test_box(); }