shithub: mc

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