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