shithub: mc

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