shithub: mc

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