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