rust/src/test/run-pass/vec.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

16 lines
255 B
Rust

// -*- rust -*-
fn main() {
let v: [int] = [10, 20];
assert (v[0] == 10);
assert (v[1] == 20);
let x: int = 0;
assert (v[x] == 10);
assert (v[x + 1] == 20);
x = x + 1;
assert (v[x] == 20);
assert (v[x - 1] == 10);
}