shithub: mc

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