shithub: mc

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