shithub: mc

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