shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}