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