shithub: mc

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

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

const main = {
	var v : u

	v = `None
}