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