shithub: mc

ref: 1f99d2dc0f2e8afe604bfe777063b4f2e277e185
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}