shithub: mc

ref: 50f182d770b59c438e5c381a03c7bfcd8c338196
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}