shithub: mc

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