shithub: mc

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