shithub: mc

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

View raw version
/* checks that union creation works. exits with 0. */
type u = union
	`Some int
	`None
;;

const main = {
	var v

	v = `Some 123
	-> 0
}