shithub: mc

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