/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

  1. // -*- rust -*-
  2. type compare<T> = fn@(T, T) -> bool;
  3. fn test_generic<T: copy>(expected: T, eq: compare<T>) {
  4. let actual: T = match check true { true => { expected } };
  5. assert (eq(expected, actual));
  6. }
  7. fn test_vec() {
  8. fn compare_box(&&v1: @int, &&v2: @int) -> bool { return v1 == v2; }
  9. test_generic::<@int>(@1, compare_box);
  10. }
  11. fn main() { test_vec(); }