shithub: mc

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