blob: 4bb4719e1aa661d0af394360023ce4c5907dad63 [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);
}