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