ref: b8b1b240c2300954903272a543d9146b59d4f997 dir: /test/outparam.myr/
/* should assign through an out pointer parameter, exiting with status 42 */ const f = {out *out = 42 } const main = { var v v = 16 f(&v) -> v }