shithub: mc

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