shithub: mc

ref: ee96b8a5cafc4811c1d4e253f843ac06426a6e5d
dir: /test/mkunion.myr/

View raw version
type u = union
	`Some int
	`None
;;

const main = {
	var v

	v = `Some 123
	-> 0
}