// EXIT:3 // OUTPUT:index out of bounds // NOCHECKS:0 unit bounds; fn main() -> i32 { let a: [2]i32 = [1, 2]; let x: i32 = a[2]; return x - x; }