shithub: mc

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