shithub: mc

ref: 3d37937626b037cf83716ed201bcc404bc1d69a9
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}