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