shithub: mc

ref: 93712e0a77bf93b784cf301d082c57a23029437c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}