shithub: mc

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