shithub: mc

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

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

const main = {
	var v : u

	v = `None
}