shithub: mc

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