rust/src/test/run-pass/expr-block.rs

17 lines
379 B
Rust
Raw Normal View History

// -*- rust -*-
// Tests for standalone blocks as expressions
2011-07-27 07:19:39 -05:00
fn test_basic() { let rs: bool = { true }; assert (rs); }
2011-07-27 07:19:39 -05:00
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(); }