shithub: mc

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