shithub: mc

ref: 71af8b2acb1e7eefa2101f0074e4fe0a631a6220
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 = {
}