shithub: mc

ref: 764fd41f08380207107ec05f65d0d0bf5b76797c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}