shithub: mc

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