ref: 6e5b64b5b225a3a491cc07dbb6f300bd4a5994b2 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) }