shithub: mc

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