shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}