shithub: mc

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