rust/src/test/run-pass/expr-alt.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

45 lines
855 B
Rust

// -*- rust -*-
// Tests for using alt as an expression
fn test_basic() {
let rs: bool = alt true { true { true } false { false } };
assert (rs);
rs = alt false { true { false } false { true } };
assert (rs);
}
fn test_inferrence() {
let rs = alt true { true { true } false { false } };
assert (rs);
}
fn test_alt_as_alt_head() {
// Yeah, this is kind of confusing ...
let rs =
alt alt false { true { true } false { false } } {
true { false }
false { true }
};
assert (rs);
}
fn test_alt_as_block_result() {
let rs =
alt false {
true { false }
false { alt true { true { true } false { false } } }
};
assert (rs);
}
fn main() {
test_basic();
test_inferrence();
test_alt_as_alt_head();
test_alt_as_block_result();
}