shithub: mc

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