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