/src/test/run-pass/expr-alt-generic-box2.rs
http://github.com/jruderman/rust · Rust · 17 lines · 10 code · 6 blank · 1 comment · 2 complexity · f735cedf8c5584b499c213c28be2b52e MD5 · raw file
- // -*- rust -*-
- type compare<T> = fn@(T, T) -> bool;
- fn test_generic<T: copy>(expected: T, eq: compare<T>) {
- let actual: T = match check true { true => { expected } };
- assert (eq(expected, actual));
- }
- fn test_vec() {
- fn compare_box(&&v1: @int, &&v2: @int) -> bool { return v1 == v2; }
- test_generic::<@int>(@1, compare_box);
- }
- fn main() { test_vec(); }