shithub: mc

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