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