shithub: mc

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