shithub: mc

ref: 6940a02fd47d73ba5dd0ad3a82b1945b639a23dc
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 = {
}