blob: dc2b4946b95f19c63605f4398b9eec459383a311 [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() {
_ = &s;
}