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