shithub: mc

ref: 765ff439ba6b29b36c6df8ea3923fac9f5e39eaf
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
	std.exit(0)
}