blob: 9a8aa90ec74cbe2aaa01791fc5fee4fd3bad5f65 [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);
}