shithub: mc

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