shithub: mc

ref: 6fb0d750b296506f31cfd0871fdac82ee878834b
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}