rust/src/test/run-pass/expr-block-generic-box2.rs
Marijn Haverbeke 60ae1590af Switch to new param kind bound syntax
And remove support for the old syntax
2012-01-05 15:50:02 +01:00

19 lines
370 B
Rust

// -*- rust -*-
type compare<T> = fn@(T, T) -> bool;
fn test_generic<T: copy>(expected: T, eq: compare<T>) {
let actual: T = { expected };
assert (eq(expected, actual));
}
fn test_vec() {
fn compare_vec(&&v1: @int, &&v2: @int) -> bool { ret v1 == v2; }
let eq = bind compare_vec(_, _);
test_generic::<@int>(@1, eq);
}
fn main() { test_vec(); }