shithub: mc

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