shithub: mc

ref: edd7580d861f87f29b6fc8d6a11ad92cb37d6e13
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 = {
}