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