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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
423 B
Rust
Raw Normal View History

// run-pass
2015-01-02 22:32:54 +00:00
fn test_generic<T: Clone, F>(expected: T, eq: F) where F: FnOnce(T, T) -> bool {
let actual: 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_vec() {
fn compare_box(v1: Box<isize>, v2: Box<isize>) -> bool { return v1 == v2; }
test_generic::<Box<isize>, _>(Box::new(1), compare_box);
}
pub fn main() { test_vec(); }