shithub: mc

ref: 366eeda638702daf6f11b5594c301d691853fcec
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}