shithub: mc

ref: 66e8d816c8cdb09bb175c0145202f100c4b4284c
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 = {
}