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