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