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

2 lines
69 B
Rust
Raw Normal View History

// Regression test for issue #388
2011-07-27 07:19:39 -05:00
fn main() { let x = { { [10] } }; }