shithub: mc

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