rust/src/test/run-pass/dvec-index-op.rs
2012-08-27 17:22:18 -07:00

7 lines
91 B
Rust

fn main() {
let x = dvec::DVec();
x.push(1);
io::println(fmt!("%d", x[0]));
}