shithub: mc

ref: 3543d66fb1a4bb9ca794a8031fa86579df1f4fb0
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}