shithub: mc

ref: 4883457b466c6eb8d7f5f281e0cda5fcfa568733
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 = {
}