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