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