shithub: mc

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