shithub: mc

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