shithub: mc

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