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