shithub: mc

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