blob: b4f524bfc852070c395d8e2f31c5a938408da89d [file] [log] [blame]
fn f(x : i32) -> i32 {
let a = array<i32, 8>(1, 2, 3, 4, 5, 6, 7, 8);
let i = x;
return a[i];
}