shithub: mc

ref: 8497641e91c1ef7f01222e960c9ac6c60c330424
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}