shithub: mc

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