shithub: mc

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