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