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