2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-03-31 20:45:08 -05:00
|
|
|
|
|
|
|
// Tests for standalone blocks as expressions
|
2013-03-28 20:39:09 -05:00
|
|
|
fn test_basic() { let rs: bool = { true }; assert!((rs)); }
|
2011-03-31 20:45:08 -05:00
|
|
|
|
2013-01-26 00:46:32 -06:00
|
|
|
struct RS { v1: int, v2: int }
|
|
|
|
|
2013-03-28 20:39:09 -05:00
|
|
|
fn test_rec() { let rs = { RS {v1: 10, v2: 20} }; assert!((rs.v2 == 20)); }
|
2011-03-31 20:45:08 -05:00
|
|
|
|
|
|
|
fn test_filled_with_stuff() {
|
2014-04-21 16:58:52 -05:00
|
|
|
let rs = { let mut a = 0i; while a < 10 { a += 1; } a };
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(rs, 10);
|
2011-03-31 20:45:08 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() { test_basic(); test_rec(); test_filled_with_stuff(); }
|