shithub: mc

ref: 414e05cc376206936ddfe7cad6f21710839d8c3b
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}