shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}