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