shithub: mc

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

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

const main = {
	var v : u

	v = `None
}