shithub: mc

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