shithub: mc

ref: 20bb3cd7fba8281b0ce5ff3ca2641b00e2e8cc67
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 = {
}