shithub: mc

ref: 4a8bc7aa008f753c082a914a0f95ea3df09d2123
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 = {
}