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

http://github.com/jruderman/rust · Rust · 16 lines · 7 code · 7 blank · 2 comment · 3 complexity · b49fa556eee039709f2ba65752f7bfde MD5 · raw file

  1. // -*- rust -*-
  2. // Tests for standalone blocks as expressions
  3. fn test_basic() { let rs: bool = { true }; assert (rs); }
  4. fn test_rec() { let rs = { {v1: 10, v2: 20} }; assert (rs.v2 == 20); }
  5. fn test_filled_with_stuff() {
  6. let rs = { let mut a = 0; while a < 10 { a += 1; } a };
  7. assert (rs == 10);
  8. }
  9. fn main() { test_basic(); test_rec(); test_filled_with_stuff(); }