shithub: mc

ref: 8071536258299b89fc70647b895c039b071aad44
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}