shithub: mc

ref: e3c1f19a29528979f3ab31a5b1cb3de3cb4483cd
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}