summary refs log tree commit diff
path: root/src/test/run-pass/expr-if-struct.rs
blob: 99787004b750deae9fd838b7f69a88b7cf95f3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18



// -*- 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() {
    enum mood { happy, sad, }
    let rs = if true { happy } else { sad };
    assert (rs == happy);
}

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