shithub: mc

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