shithub: mc

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