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 14:19:39 +02:00
fn main() { let x = { { [10] } }; }