shithub: mc

ref: 422ae1fdf693890b14d9e0c40298065c1342a0ec
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}