ref: cae230b08fabfc63c60be35b932fcc9f8c1cb303 dir: /test/mkunion.myr/
use std /* checks that union creation works. exits with 0. */ type u = union `Some int `None ;; const main = { var v v = `Some 123 std.exit(0) }