rust/src/test/run-pass/expr-alt-struct.rs
Marijn Haverbeke 67cc89f38d Rewrite exhaustiveness checker
Issue #352
Closes #1720

The old checker would happily accept things like 'alt x { @some(a) { a } }'.
It now properly descends into patterns, checks exhaustiveness of booleans,
and complains when number/string patterns aren't exhaustive.
2012-02-15 15:47:42 +01:00

19 lines
350 B
Rust

// -*- rust -*-
// Tests for alt as expressions resulting in structural types
fn test_rec() {
let rs = alt check true { true { {i: 100} } };
assert (rs == {i: 100});
}
fn test_tag() {
enum mood { happy, sad, }
let rs = alt true { true { happy } false { sad } };
assert (rs == happy);
}
fn main() { test_rec(); test_tag(); }