shithub: mc

ref: 6270260b03df40c9e2230079bafbf574238acc34
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}