struct S { i : i32; }; @binding(0) @group(0) var u : S; @stage(compute) @workgroup_size(1) fn main() { ignore(u); ignore(u.i); }