shithub: mc

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