shithub: mc

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

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

const main = {
	var v : u

	v = `None
}