shithub: mc

ref: 5889fbb13b415134e0d5b094359e351f5ff94fc3
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}