shithub: mc

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