shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}