blob: c4caa99b030ffa01294d6e10e11653234a75948d [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;
}