shithub: mc

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