struct S {
  i : i32,
};

var<private> V : S;

@compute @workgroup_size(1)
fn main() {
  let i : i32 = V.i;
}