shithub: mc

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

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

const main = {
	var v : u

	v = `None
}