shithub: mc

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