shithub: mc

ref: 781e188ad6426398558638dfa0984699d64ef413
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}