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