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