shithub: mc

ref: 8a2b92eff783f9489be2d6ed28187c0e69cc26ca
dir: /test/exportcycle.myr/

View raw version
use std
/* This test checks that cyclic types will be output
 * by muse. */
pkg =
	type list = struct
		next	: list#
		val	: int
	;;
;;

const main = {
}