shithub: mc

ref: 0f469133aed044569f4d6ae9efc1d961124c05cd
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}