shithub: mc

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

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

const main = {
	var v : u

	v = `None
}