shithub: mc

ref: 4b77bda908dec8620abde1e452a1f2bac29f1252
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 = {
	-> 0
}