shithub: mc

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