shithub: mc

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