shithub: mc

ref: 5a6878701b5066d0143b0a2e21be35ce7f3d8976
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 = {
}