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