shithub: mc

ref: 0116ef24cb193165de85d3a707d4dbd64ba1b60f
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}