blob: 9121fe854c94fb47df10fe9f8072bf61d4b723af [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;
}