ref: 481445dc78bd2bbc733acfaf3f10ad0b8b4b2441 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) }