@group(0) @binding(1) var data : array; fn foo() -> i32 { return data[0]; } @stage(compute) @workgroup_size(16, 16, 1) fn main() { foo(); }