shithub: mc

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