blob: be63c032d2ed3e56a823c6d697fe505c0dc28956 [file] [log] [blame]
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);
}