struct S { a : i32; }; @group(0) @binding(0) var buf : S; @stage(compute) @workgroup_size(1) fn main() { let p : ptr = &buf.a; *p = 12; }