shithub: mc

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