shithub: mc

ref: 2698fe288642465ec636dca1c8f4ff88a22c5afe
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 = {
}