blob: 13a646249fff27b2990fd3492c8ac0677dd9f197 [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);
}