shithub: mc

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