rust/src/test/run-pass/expr-repeat-vstore.rs

17 lines
392 B
Rust
Raw Normal View History

2013-10-23 03:49:18 -05:00
#[feature(managed_boxes)];
pub fn main() {
let v: ~[int] = ~[ 1, ..5 ];
println(v[0].to_str());
println(v[1].to_str());
println(v[2].to_str());
println(v[3].to_str());
println(v[4].to_str());
let v: @[int] = @[ 2, ..5 ];
println(v[0].to_str());
println(v[1].to_str());
println(v[2].to_str());
println(v[3].to_str());
println(v[4].to_str());
}