shithub: mc

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

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

const main = {
	var v : u

	v = `None
}