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