shithub: mc

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