blob: d934291c6173c375c31d7361ea7db157f07b254c [file] [log] [blame]
[[block]]
struct S {
arr : array<i32>;
};
[[binding(0), group(0)]] var<storage, read_write> s : S;
[[stage(compute), workgroup_size(1)]]
fn main() {
ignore(s.arr);
}