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