shithub: mc

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