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