blob: 848aa2d079add8b87c46470d210df4376feb828f [file] [log] [blame]
struct S {
i : i32,
};
@binding(0) @group(0) var<storage, read_write> s : S;
@compute @workgroup_size(1)
fn main() {
_ = s;
_ = s.i;
}