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