rust/src/test/run-pass/expr-alt-struct.rs
2012-01-19 16:11:17 -08:00

19 lines
344 B
Rust

// -*- rust -*-
// Tests for alt as expressions resulting in structural types
fn test_rec() {
let rs = alt 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(); }