shithub: mc

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