shithub: mc

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