shithub: mc

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