shithub: mc

ref: 6041d0a1d135a8085dad7a76ec66dc42151065ab
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 = {
}