shithub: mc

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