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