shithub: mc

ref: e72ff77facf957ccb145104b63b1757a3a4da210
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}