ee7d03f7d7
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.
13 lines
222 B
Rust
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);
|
|
} |