rust/src/test/run-pass/expr-block-box.rs
2011-04-01 00:05:13 -04:00

11 lines
94 B
Rust

// xfail-boot
// -*- rust -*-
fn main() {
auto x = {
@100
};
check (*x == 100);
}