ref: 0f7fbc2dcbb934a3aa62aa4a69db432b4d20b7c1 dir: /test/outparam.myr/
use std /* should assign through an out pointer parameter, exiting with status 42 */ const f = {out out# = 42 } const main = { var v v = 16 f(&v) std.exit(v) }