blob: 0952e9dd5abe19e2390b7f853ca80d4e9ce3e2af [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);
}