shithub: mc

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