shithub: mc

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