summary refs log tree commit diff
path: root/src/test/run-pass/repeated-vector-syntax.rs
blob: e6b9e2b408a536a194b05184e41cf33fda2b7f13 (plain)
1
2
3
4
5
6
7
fn main() {
    let x = [ @[true], ..512 ];
    let y = [ 0, ..1 ];
    error!("%?", x);
    error!("%?", y);
}