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