shithub: mc

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