shithub: mc

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