shithub: mc

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