shithub: mc

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