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