shithub: mc

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