shithub: mc

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