shithub: mc

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