ref: 183f3d40a1dbc2254f1e01de21eb022996f40ad2 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) }