ref: 65c02369b7b2c94e3832bb2a333b98bca852ada6 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) }