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



// -*- rust -*-

// Tests for standalone blocks as expressions
fn test_basic() { let rs: bool = { true }; assert (rs); }

fn test_rec() { let rs = { {v1: 10, v2: 20} }; assert (rs.v2 == 20); }

fn test_filled_with_stuff() {
    let rs = { let mut a = 0; while a < 10 { a += 1; } a };
    assert (rs == 10);
}

fn main() { test_basic(); test_rec(); test_filled_with_stuff(); }