shithub: mc

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