shithub: mc

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

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

const main = {
	var v : u

	v = `None
}