/src/test/run-pass/expr-alt-struct.rs

http://github.com/jruderman/rust · Rust · 18 lines · 10 code · 6 blank · 2 comment · 4 complexity · 1f62cae9a4f7ce8067d9f33fcd5f55f1 MD5 · raw file

  1. // -*- rust -*-
  2. // Tests for match as expressions resulting in structural types
  3. fn test_rec() {
  4. let rs = match check true { true => { {i: 100} } };
  5. assert (rs == {i: 100});
  6. }
  7. fn test_tag() {
  8. enum mood { happy, sad, }
  9. let rs = match true { true => { happy } false => { sad } };
  10. assert (rs == happy);
  11. }
  12. fn main() { test_rec(); test_tag(); }