shithub: mc

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