about summary refs log tree commit diff
path: root/src/test/run-pass/expr-alt-struct.rs
blob: e346c9d2a9fb4db2647236f8614644bed5024138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -*- 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() {
    tag mood { happy; sad; }
    let rs = alt true { true { happy } false { sad } };
    assert (rs == happy);
}

fn main() { test_rec(); test_tag(); }