shithub: mc

ref: 178ce0afad1d2ec8af4814ce5970d2e8194b849f
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 = {
}