ref: 286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744 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) }