ref: 34c3e5b0116a5283433c9cf6c3484ee6967e3030 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 }