ref: 16bbf82067cacf44828b5f5023bdd6ec3b80b570 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) }