shithub: mc

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