about summary refs log tree commit diff
path: root/src/test/run-pass/vec-concat.rs
blob: e107d861a2a23586b0fc329906fb6958b4b8a2dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13



// -*- 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);
}