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