shithub: mc

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