shithub: mc

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

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

const main = {
	var v : u

	v = `None
}