shithub: mc

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