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