shithub: mc

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