rust/src/test/run-pass/expr-if-struct.rs

18 lines
335 B
Rust
Raw Normal View History

// -*- rust -*-
// Tests for if as expressions returning structural types
fn test_rec() {
2011-07-27 07:19:39 -05:00
let rs = if true { {i: 100} } else { {i: 101} };
assert (rs == {i: 100});
}
fn test_tag() {
tag mood { happy; sad; }
2011-07-27 07:19:39 -05:00
let rs = if true { happy } else { sad };
assert (rs == happy);
}
fn main() { test_rec(); test_tag(); }