shithub: mc

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