shithub: mc

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