shithub: mc

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