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