shithub: mc

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