shithub: mc

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