shithub: mc

ref: 709c76b410df4f968557b6013284ac5bc2471213
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}