shithub: mc

ref: 49d3b0cf04719267479faebe9e2ffe0089a2f9ac
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}