rust/src/test/run-pass/expr-block.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

16 lines
375 B
Rust

// -*- 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 a = 0; while a < 10 { a += 1; } a };
assert (rs == 10);
}
fn main() { test_basic(); test_rec(); test_filled_with_stuff(); }