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