shithub: mc

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