rust/src/test/run-pass/vec-concat.rs
Brian Anderson ee7d03f7d7 Convert most working tests to ivecs
I tried to pay attention to what was actually being tested so, e.g. when I
test was just using a vec as a boxed thing, I converted to boxed ints, etc.

Haven't converted the macro tests yet. Not sure what to do there.
2011-08-12 16:13:13 -07:00

13 lines
222 B
Rust

// -*- rust -*-
fn main() {
let a: [int] = ~[1, 2, 3, 4, 5];
let b: [int] = ~[6, 7, 8, 9, 0];
let v: [int] = a + b;
log v.(9);
assert (v.(0) == 1);
assert (v.(7) == 8);
assert (v.(9) == 0);
}