shithub: mc

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