shithub: mc

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

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

const main = {
	var v : u

	v = `None
}