shithub: mc

ref: 86f01268aef860fafca5e93913e657efc58b240e
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}