shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}