shithub: mc

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