shithub: mc

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