shithub: mc

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