shithub: mc

ref: 7b0c6c77845e01963e6eabd94bbc91c68eed6bc3
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
}