2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-03-31 20:45:08 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
// Tests for standalone blocks as expressions
|
2011-06-25 10:45:49 -05:00
|
|
|
fn test_basic() { let bool rs = { true }; assert (rs); }
|
2011-03-31 20:45:08 -05:00
|
|
|
|
2011-06-25 10:45:49 -05:00
|
|
|
fn test_rec() { auto rs = { rec(v1=10, v2=20) }; assert (rs.v2 == 20); }
|
2011-03-31 20:45:08 -05:00
|
|
|
|
|
|
|
fn test_filled_with_stuff() {
|
2011-06-25 10:45:49 -05:00
|
|
|
auto rs = { auto a = 0; while (a < 10) { a += 1; } a };
|
|
|
|
assert (rs == 10);
|
2011-03-31 20:45:08 -05:00
|
|
|
}
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn main() { test_basic(); test_rec(); test_filled_with_stuff(); }
|