blob: b83a8f9e772926ae8ce55fa33e7a2cefbc917af2 [file] [log] [blame]
struct S {
arr : array<i32>,
};
@binding(0) @group(0) var<storage, read_write> s : S;
@compute @workgroup_size(1)
fn main() {
_ = &s.arr;
}