fn func(value : i32, pointer : ptr) { *pointer = value; } [[stage(compute), workgroup_size(1)]] fn main() { var i : i32 = 123; func(123, &i); }