ref: 0dd5d1f71505ce3d8a51e8244cf3128c54eb8293 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) }