shithub: mc

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