shithub: mc

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