shithub: mc

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