[[block]] struct S { a : i32; }; [[group(0), binding(0)]] var buf : S; [[stage(compute)]] fn main() { let p : ptr = &buf.a; *p = 12; }