shithub: mc

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