shithub: mc

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