shithub: mc

ref: 55f9f36fd0a2dd5378f1a71a82aa9eb1b7f69562
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 = {
}