shithub: mc

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