summary refs log tree commit diff
path: root/src/test/run-pass/vec-fixed-length.rs
blob: 41b2ae89535d4d0c6e36a31916166ca396e92b66 (plain)
1
2
3
4
5
fn main() {
    let x: [int*4] = [1, 2, 3, 4];
    io::println(fmt!("%d", x[0]));
}