rust/src/test/run-pass/vec-growth.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

15 lines
209 B
Rust

fn main() {
let v = [1];
v += [2];
v += [3];
v += [4];
v += [5];
assert (v[0] == 1);
assert (v[1] == 2);
assert (v[2] == 3);
assert (v[3] == 4);
assert (v[4] == 5);
}