518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
19 lines
336 B
Rust
19 lines
336 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// Tests for if as expressions returning structural types
|
|
fn test_rec() {
|
|
let rs = if true { {i: 100} } else { {i: 101} };
|
|
assert (rs == {i: 100});
|
|
}
|
|
|
|
fn test_tag() {
|
|
tag mood { happy; sad; }
|
|
let rs = if true { happy } else { sad };
|
|
assert (rs == happy);
|
|
}
|
|
|
|
fn main() { test_rec(); test_tag(); }
|