ref: 9ac459c0cc5beac10be8ba3310af6edd89b1849c 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 }