shithub: mc

ref: 4c4a81a00c9265c4279f9442564c37f30df3fd63
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
}