shithub: mc

ref: a9512a951e1cf0c28a90c5c39cbbb5a3a8e68629
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}