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