shithub: mc

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