shithub: mc

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