shithub: mc

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