shithub: mc

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