shithub: mc

ref: 92d743d5e5eaf030196e52bdcc94b8c1735c1219
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}