ref: 2551a75889ee7eee8d9cb222c9d4f3111fccfa85 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) }