rust/src/test/run-pass/vec.rs

14 lines
237 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn main() {
let vec[int] v = vec(10, 20);
check (v.(0) == 10);
check (v.(1) == 20);
let int x = 0;
check (v.(x) == 10);
check (v.(x + 1) == 20);
x = x + 1;
check (v.(x) == 20);
check (v.(x-1) == 10);
}