shithub: mc

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