shithub: mc

ref: 1d621484cf5a247351702ef7b2c111ca83a41d97
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}