ref: 87d75da15310e2c3aa65375a7b3c67f7fe238ec7 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 }