shithub: mc

ref: 9430b39f7841e539a6ed8261a4eddb6eeb082e06
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 = {
}