shithub: mc

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