rust/src/test/run-pass/repeated-vector-syntax.rs
2012-08-03 18:49:44 -07:00

8 lines
113 B
Rust

fn main() {
let x = [ @[true], ..512 ];
let y = [ 0, ..1 ];
error!("%?", x);
error!("%?", y);
}