shithub: mc

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