shithub: mc

ref: 24cdade7c68fb72245f0aa2fecde4e21306b6549
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}