shithub: mc

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