shithub: mc

ref: 026ccbd147926e470ff77a5f1bc613dad7017799
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}