shithub: mc

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