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