shithub: mc

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

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

const main = {
	var v : u

	v = `None
}