shithub: mc

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