shithub: mc

ref: 0226a1a631e50ac5ad042efc85cf5d5461f5b0f8
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 = {
}