blob: da77a76fe35e1cecd6183e3957920d8831186cb4 [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() {
_ = s;
_ = s.i;
}