rust/src/test/run-pass/repeated-vector-syntax.rs

24 lines
696 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2014-10-14 21:07:11 -04:00
#![feature(slicing_syntax)]
2013-07-11 12:05:17 -07:00
pub fn main() {
2014-02-01 15:52:41 +11:00
let x = [ [true], ..512 ];
let y = [ 0i, ..1 ];
2014-10-14 21:07:11 -04:00
print!("[");
for xi in x.iter() {
print!("{}, ", (*xi)[]);
}
println!("]");
println!("{}", y[]);
}